This notebook is for examining the current ratings on boardgamegeek.com with the aim of adjusting and computing different versions of these ratings. The main goal is to compute alternative ranks to adjust for a tendency of the BGG ratings to skew towards complex and recently released games. This is not a novel contribution, but this notebook aims to explain some of the considerations behind calculating different ratings for games as well as refresh these ratings frequently off by scraping the most up to data from the BGG API.
We’ll load in the active data we have from BGG and begin our analysis. There are a couple of different variables we’re interested in exploring: the average rating, the geek rating (bayesaverage), and the average weight, or complexity. For the average and geek ratings, votes can range from 1 to 10, while complexity ranges from 1 to 5.
active_games %>%
select(average, bayesaverage, averageweight) %>%
gather() %>%
ggplot(., aes(x=value))+
geom_histogram(bins=100)+
facet_wrap(key~.,
ncol = 3,
scales ="free")+
theme_bw(8)+
my_caption
The geek rating is the game’s average plus around 1000 baseline 5.5 votes added, which serve as a prior to prevent games with few ratings from moving to the top of the geek list.
If we plot average rating of games vs their complexity, we can see that a game’s rating is heavily correlated with its complexity.
We can also plot this with labels to pick out particular games.
The average rating is also a function of time, as we see a general rise in the average for more recently released games.
If we size games by their number of user ratings, we can see when we start to really see the number of user ratings for games take off.
Now, so far we’ve just looked at the average rating, which is simply the average of community ratings for a given game. Most people care about the Geek ratings, uses a combination of the community average and the number of votes. In order to get a high Geek rating, a game need to both be well rated (a high average) and have a high enough number of user ratings. We can get a sense of how games map on both of these dimensions via a visualization I have come to dub ‘the mountain’.
The geek rating is designed to capture a mix of being highly rated and popular. To achieve this, boardgamegeek used a form of Bayesian averaging, (roughly) starting every game off with 1000 votes at 5.5, which means that it takes a decent number of users rating the game to actually move the baseline rating.
We can see this if we plot all games based on their average rating as well as their number ratings and size by the number of user ratings.
# no size
active_games %>%
ggplot(., aes(x=average,
# color = factor(decade),
y=bayesaverage))+
geom_point(alpha=.15,
aes(size = usersrated))+
# geom_smooth(col = "red")+
theme_phil()+
#scale_size_area(limits = c(100, 100000))+
theme(legend.title = element_text(),
legend.position = "top")+
geom_vline(xintercept = 5.5,
col = 'grey40',
linetype = 'dashed',
alpha = 0.8)+
geom_hline(yintercept = 5.5,
col = 'grey40',
linetype = 'dashed',
alpha = 0.8)+
guides(size = guide_legend(title = "usersrated"))+
annotate("text",
label = "Popular, Bad Games",
x = 4, y=4.5)+
annotate("text",
label = "Popular, Good Games",
x = 7, y=8.5)
The geek ratings on BGG are highly influential, but they skew heavily towards very complex games. This means that “normal people” will have a hard time using the games that are highly rated on BGG.
If we look at the top 100 games on BGG according to the geek ratings, we can see that all generally fall on the heavier side in terms of game complexity.
# get top bgg games
active_games %>%
arrange(desc(bayesaverage)) %>%
mutate(rank = row_number()) %>%
mutate(date = as.Date(timestamp),
yearpublished = as.character(yearpublished),
game_id = as.character(game_id),
name = abbreviate(name, minlength = 45)) %>%
select(yearpublished,
game_id,
name, rank, bayesaverage, averageweight) %>%
arrange(desc(bayesaverage)) %>%
mutate_if(is.numeric, round, 2) %>%
select(yearpublished, game_id, name, rank, bayesaverage, averageweight) %>%
rename(complexity = averageweight) %>%
head(100) %>%
flextable() %>%
flextable::autofit() %>%
bg(j = c('complexity'),
bg = complexity_col_func) %>%
bg(j = c("bayesaverage"),
bg = bayesaverage_col_func) %>%
flextable::align(j = c("yearpublished", "bayesaverage", "complexity"),
align = "center")
yearpublished | game_id | name | rank | bayesaverage | complexity |
2017 | 174430 | Gloomhaven | 1 | 8.50 | 3.87 |
2015 | 161936 | Pandemic Legacy: Season 1 | 2 | 8.44 | 2.83 |
2018 | 224517 | Brass: Birmingham | 3 | 8.42 | 3.90 |
2020 | 291457 | Gloomhaven: Jaws of the Lion | 4 | 8.27 | 3.59 |
2016 | 167791 | Terraforming Mars | 5 | 8.27 | 3.25 |
2017 | 233078 | Twilight Imperium: Fourth Edition | 6 | 8.26 | 4.26 |
2017 | 220308 | Gaia Project | 7 | 8.17 | 4.37 |
2016 | 187645 | Star Wars: Rebellion | 8 | 8.17 | 3.73 |
2017 | 162886 | Spirit Island | 9 | 8.14 | 4.04 |
2011 | 115746 | War of the Ring: Second Edition | 10 | 8.14 | 4.18 |
2015 | 182028 | Through the Ages: A New Story of Civilization | 11 | 8.14 | 4.42 |
2016 | 193738 | Great Western Trail | 12 | 8.12 | 3.71 |
2005 | 12333 | Twilight Struggle | 13 | 8.11 | 3.60 |
2016 | 169786 | Scythe | 14 | 8.06 | 3.43 |
2020 | 316554 | Dune: Imperium | 15 | 8.03 | 2.99 |
2011 | 84876 | The Castles of Burgundy | 16 | 8.01 | 3.00 |
2018 | 167355 | Nemesis | 17 | 7.99 | 3.40 |
2015 | 173346 | 7 Wonders Duel | 18 | 7.98 | 2.23 |
2013 | 124361 | Concordia | 19 | 7.97 | 3.01 |
2007 | 28720 | Brass: Lancashire | 20 | 7.97 | 3.86 |
2012 | 120677 | Terra Mystica | 21 | 7.96 | 3.97 |
2016 | 177736 | A Feast for Odin | 22 | 7.96 | 3.85 |
2019 | 266192 | Wingspan | 23 | 7.94 | 2.44 |
2016 | 205637 | Arkham Horror: The Card Game | 24 | 7.93 | 3.49 |
2018 | 237182 | Root | 25 | 7.89 | 3.73 |
2015 | 183394 | Viticulture Essential Edition | 26 | 7.89 | 2.89 |
2018 | 199792 | Everdell | 27 | 7.88 | 2.81 |
2014 | 164928 | Orléans | 28 | 7.88 | 3.04 |
2019 | 266507 | Clank!: Legacy – Acquisitions Incorporated | 29 | 7.88 | 2.69 |
2011 | 96848 | Mage Knight Board Game | 30 | 7.87 | 4.33 |
2020 | 246900 | Eclipse: Second Dawn for the Galaxy | 31 | 7.87 | 3.59 |
2020 | 312484 | Lost Ruins of Arnak | 32 | 7.87 | 2.87 |
2015 | 175914 | Food Chain Magnate | 33 | 7.83 | 4.20 |
2002 | 3076 | Puerto Rico | 34 | 7.83 | 3.28 |
2013 | 102794 | Caverna: The Cave Farmers | 35 | 7.82 | 3.79 |
2019 | 285774 | Marvel Champions: The Card Game | 36 | 7.81 | 2.87 |
2015 | 170216 | Blood Rage | 37 | 7.81 | 2.88 |
2017 | 192135 | Too Many Bones | 38 | 7.81 | 3.85 |
2007 | 31260 | Agricola | 39 | 7.80 | 3.64 |
2019 | 251247 | Barrage | 40 | 7.80 | 4.06 |
2018 | 248562 | Mage Knight: Ultimate Edition | 41 | 7.79 | 4.62 |
2021 | 342942 | Ark Nova | 42 | 7.79 | 3.74 |
2019 | 276025 | Maracaibo | 43 | 7.78 | 3.89 |
2018 | 247763 | Underwater Cities | 44 | 7.78 | 3.60 |
2017 | 221107 | Pandemic Legacy: Season 2 | 45 | 7.78 | 3.24 |
2019 | 256960 | Pax Pamir: Second Edition | 46 | 7.77 | 3.82 |
2016 | 205059 | Mansions of Madness: Second Edition | 47 | 7.77 | 2.67 |
2019 | 284083 | The Crew: The Quest for Planet Nine | 48 | 7.77 | 1.98 |
2017 | 185343 | Anachrony | 49 | 7.75 | 4.01 |
2019 | 271320 | The Castles of Burgundy | 50 | 7.75 | 2.98 |
2012 | 126163 | Tzolk'in: The Mayan Calendar | 51 | 7.74 | 3.67 |
2004 | 2651 | Power Grid | 52 | 7.73 | 3.27 |
2017 | 216132 | Clans of Caledonia | 53 | 7.72 | 3.46 |
2020 | 184267 | On Mars | 54 | 7.72 | 4.65 |
2015 | 55690 | Kingdom Death: Monster | 55 | 7.72 | 4.26 |
2016 | 209010 | Mechs vs. Minions | 56 | 7.71 | 2.43 |
2014 | 164153 | Star Wars: Imperial Assault | 57 | 7.71 | 3.30 |
2008 | 35677 | Le Havre | 58 | 7.71 | 3.73 |
2017 | 180263 | The 7th Continent | 59 | 7.70 | 2.90 |
2018 | 244521 | The Quacks of Quedlinburg | 60 | 7.69 | 1.95 |
1876 | 521 | Crokinole | 61 | 7.69 | 1.25 |
2015 | 125153 | The Gallerist | 62 | 7.69 | 4.26 |
2017 | 161533 | Lisboa | 63 | 7.68 | 4.57 |
2017 | 230802 | Azul | 64 | 7.68 | 1.77 |
2011 | 72125 | Eclipse | 65 | 7.67 | 3.70 |
2019 | 266810 | Paladins of the West Kingdom | 66 | 7.67 | 3.70 |
2016 | 191189 | Aeon's End | 67 | 7.67 | 2.78 |
2006 | 25613 | Through the Ages: A Story of Civilization | 68 | 7.66 | 4.17 |
2012 | 124742 | Android: Netrunner | 69 | 7.66 | 3.40 |
2020 | 314040 | Pandemic Legacy: Season 0 | 70 | 7.66 | 3.04 |
2007 | 28143 | Race for the Galaxy | 71 | 7.65 | 2.99 |
2016 | 201808 | Clank!: A Deck-Building Adventure | 72 | 7.65 | 2.22 |
2014 | 159675 | Fields of Arle | 73 | 7.64 | 3.87 |
2012 | 121921 | RobinsonCrusoe:AdventuresontheCursedIsland | 74 | 7.64 | 3.80 |
2018 | 229853 | Teotihuacan: City of Gods | 75 | 7.64 | 3.78 |
2014 | 157354 | Five Tribes | 76 | 7.64 | 2.85 |
2015 | 171623 | The Voyages of Marco Polo | 77 | 7.63 | 3.18 |
2010 | 68448 | 7 Wonders | 78 | 7.62 | 2.32 |
2016 | 200680 | Agricola (Revised Edition) | 79 | 7.62 | 3.49 |
2011 | 108687 | Puerto Rico | 80 | 7.62 | 3.27 |
2012 | 110327 | Lords of Waterdeep | 81 | 7.62 | 2.46 |
2010 | 62219 | Dominant Species | 82 | 7.61 | 4.04 |
2015 | 182874 | Grand Austria Hotel | 83 | 7.61 | 3.22 |
2021 | 324856 | The Crew: Mission Deep Sea | 84 | 7.61 | 2.01 |
2018 | 236457 | Architects of the West Kingdom | 85 | 7.58 | 2.76 |
2019 | 264220 | Tainted Grail: The Fall of Avalon | 86 | 7.58 | 3.29 |
2012 | 122515 | Keyflower | 87 | 7.58 | 3.34 |
1995 | 93 | El Grande | 88 | 7.57 | 3.05 |
2005 | 18602 | Caylus | 89 | 7.57 | 3.80 |
2008 | 37111 | Battlestar Galactica: The Board Game | 90 | 7.56 | 3.25 |
2021 | 295947 | Cascadia | 91 | 7.56 | 1.90 |
2005 | 12493 | Twilight Imperium: Third Edition | 92 | 7.55 | 4.25 |
2010 | 73439 | Troyes | 93 | 7.55 | 3.47 |
2009 | 40834 | Dominion: Intrigue | 94 | 7.55 | 2.42 |
2019 | 269385 | TheLordoftheRings:JourneysinMiddle-Earth | 95 | 7.55 | 2.60 |
2015 | 170042 | Raiders of the North Sea | 96 | 7.55 | 2.54 |
2015 | 172386 | Mombasa | 97 | 7.54 | 3.89 |
2013 | 146021 | Eldritch Horror | 98 | 7.54 | 3.32 |
2016 | 203993 | Lorenzo il Magnifico | 99 | 7.53 | 3.30 |
1997 | 42 | Tigris & Euphrates | 100 | 7.53 | 3.50 |
We want a list of games that isn’t so heavily skewed towards complexity. We want to “control for” the influence of complexity on the rating. That is, if we take the variation in the average ratings that isn’t explained by complexity, which games still have high ratings?
To do this, we need the residuals from a regression of average rating on complexity - these will be the variation in game ratings that are not explained by complexity. We will fit the bivariate model on games published through 2021 and inspect the results.
# fit model
complexity_model<-active_games %>%
filter(yearpublished < 2021) %>%
filter(!is.na(averageweight)) %>%
nest() %>%
mutate(model = map(data, ~ lm(average ~ averageweight,
data = .x))) %>%
mutate(tidied = map(model, tidy, se="robust", conf.int=T)) %>%
mutate(augmented = map(model, augment)) %>%
mutate(glanced = map(model, glance))
# look at coefficient
complexity_model %>%
select(tidied) %>%
unnest() %>%
mutate_if(is.numeric, round, 3) %>%
flextable() %>%
flextable::autofit()
term | estimate | std.error | statistic | p.value | conf.low | conf.high |
(Intercept) | 5.212 | 0.015 | 357.491 | 0 | 5.184 | 5.241 |
averageweight | 0.585 | 0.007 | 87.274 | 0 | 0.572 | 0.599 |
# look at model fit
complexity_model %>%
select(glanced) %>%
unnest() %>%
mutate_if(is.numeric, round, 2) %>%
select(r.squared,
sigma,
nobs) %>%
gather() %>%
flextable() %>%
flextable::autofit()
key | value |
r.squared | 0.27 |
sigma | 0.78 |
nobs | 20,914.00 |
The intercept indicates the average rating of a game with a complexity of 0, which is kind of nonsensical. The coefficient indicates the effect of a unit increase in the complexity of a game on the average rating. Putting these two together tells us that a game with a complexity rating of 1 would have a rating of 5.8. A game with a complexity rating of 5, meanwhile, would have a rating of 8.14.
The model indicates that the complexity of a game explains about 26% of the variation in average ratings (R-squared, which simply is the correlation coefficient (R) we saw earlier squared). So it’s not the only thing that matters, but it has a pretty sizeable impact on the average rating and the corresponding geek rating.
We don’t really care about the model per se, we just want to get the residuals.
# histogram
complexity_model %>%
select(augmented) %>%
unnest() %>%
ggplot(., aes(x=.resid))+
geom_histogram(bins=80)+
theme_phil()
The point of the residuals is that they are the variation in a game’s average rating that is not explained by complexity, meaning we will see no correlation between complexity and the residuals.
# look at individual residuals
complexity_model %>%
select(data, augmented) %>%
unnest() %>%
select(yearpublished, game_id, name, usersrated, average, .resid, averageweight) %>%
ggplot(., aes(x=averageweight, y=.resid)) +
geom_point(alpha = 0.25)+
theme_phil()+
geom_smooth(method = "lm",
formula = 'y ~ x',
col = "red")+
xlab("complexity")+
ylab("Residual")
A positive residual in this case is a game that has a higher than expected average given its complexity. But, we can’t just adjust the ratings alone because it skews heavily towards games that have a highly inflated average rating due to a only having a handful of users.
yearpublished | game_id | name | usersrated | average | bayesaverage | .resid | averageweight | adj_average |
2019 | 290500 | Flip & Fish | 30 | 9.14 | 5.52 | 3.34 | 1.00 | 9.73 |
2018 | 236332 | Animator vs Animation | 48 | 9.06 | 5.50 | 3.26 | 1.00 | 9.66 |
2020 | 260037 | Composition | 40 | 8.94 | 5.52 | 3.14 | 1.00 | 9.54 |
2017 | 219666 | Ciudad de Cartón | 37 | 8.72 | 5.51 | 2.92 | 1.00 | 9.31 |
2020 | 281257 | Aeolis | 39 | 9.23 | 5.52 | 2.85 | 2.00 | 9.24 |
2018 | 228370 | TerroriXico | 70 | 9.41 | 5.50 | 2.74 | 2.50 | 9.13 |
2020 | 310846 | Urgency | 41 | 9.10 | 5.53 | 2.71 | 2.00 | 9.11 |
2018 | 198005 | Revanche | 50 | 8.73 | 5.54 | 2.64 | 1.50 | 9.03 |
2019 | 284111 | Drinks & Daggers | 64 | 8.99 | 5.51 | 2.61 | 2.00 | 9.01 |
2012 | 130357 | Go First Dice | 50 | 8.38 | 5.58 | 2.58 | 1.00 | 8.98 |
2005 | 20414 | RPGQuest: Greek Mythology | 45 | 8.80 | 5.51 | 2.58 | 1.73 | 8.97 |
2020 | 315219 | Black It Out | 73 | 8.32 | 5.55 | 2.52 | 1.00 | 8.92 |
2019 | 283152 | Monikers: Serious Nonsense | 240 | 8.30 | 5.84 | 2.51 | 1.00 | 8.90 |
2015 | 171500 | El Dorado Canyon | 30 | 8.74 | 5.52 | 2.50 | 1.75 | 8.89 |
2020 | 309545 | Lucky Little Luxembourg | 37 | 8.69 | 5.55 | 2.47 | 1.71 | 8.87 |
2019 | 256885 | The Fantasy Trip: Legacy Edition | 389 | 9.34 | 5.73 | 2.46 | 2.83 | 8.86 |
2017 | 233951 | Vilar de Mouros | 36 | 8.25 | 5.51 | 2.46 | 1.00 | 8.85 |
2015 | 203560 | Fall of Magic | 63 | 8.24 | 5.59 | 2.44 | 1.00 | 8.84 |
2019 | 283151 | Monikers: Classics | 106 | 8.23 | 5.66 | 2.44 | 1.00 | 8.83 |
2014 | 160950 | The Badger Deck | 40 | 8.20 | 5.56 | 2.40 | 1.00 | 8.79 |
2009 | 151070 | Gladiatoris | 31 | 9.23 | 5.52 | 2.38 | 2.80 | 8.77 |
2018 | 263351 | Abstratus | 66 | 8.13 | 5.57 | 2.33 | 1.00 | 8.72 |
2017 | 221248 | Monikers: The Shut Up & Sit Down Nonsense Box | 360 | 8.10 | 5.95 | 2.30 | 1.00 | 8.70 |
2006 | 26386 | RPGQuest: Oriental Adventures | 38 | 8.49 | 5.51 | 2.30 | 1.67 | 8.69 |
2016 | 195709 | Monikers: Something Something | 222 | 8.09 | 5.80 | 2.30 | 1.00 | 8.69 |
We will adjust this using an approach similar to their Bayesian averaging methodology, adding 1000 ratings at the average of 5.5
# adjusted bayesian
complexity_adjusted_ratings <- complexity_model %>%
select(data, augmented) %>%
unnest() %>%
mutate(adj_average = .resid + mean(average, na.rm=T)) %>%
mutate(adj_bayesaverage = ((usersrated*adj_average) + (5.5*1000)) / (usersrated + 1000)) %>%
arrange(desc(adj_bayesaverage)) %>%
mutate(adj_rank = row_number(),
date = as.Date(timestamp),
game_id = as.character(game_id))
We can put this all together to now look at games that are rated highly after adjusting for the effect of complexity. We’ll look at the top 250 to keep it simple.
published | game_id | name | geekrank | adjustedrank | rankdiff | geekrating | adjustedrating | complexity |
1876 | 521 | Crokinole | 60 | 1 | 59 | 7.69 | 8.22 | 1.25 |
2015 | 161936 | Pandemic Legacy: Season 1 | 2 | 2 | 0 | 8.44 | 8.06 | 2.83 |
2018 | 254640 | Just One | 144 | 3 | 141 | 7.40 | 8.04 | 1.05 |
2015 | 178900 | Codenames | 107 | 4 | 103 | 7.50 | 7.99 | 1.28 |
2015 | 173346 | 7 Wonders Duel | 18 | 5 | 13 | 7.98 | 7.95 | 2.23 |
2020 | 318977 | MicroMacro: Crime City | 212 | 6 | 206 | 7.28 | 7.92 | 1.13 |
2017 | 230802 | Azul | 63 | 7 | 56 | 7.68 | 7.90 | 1.77 |
2014 | 160069 | Ticket to Ride: 10th Anniversary | 100 | 8 | 92 | 7.53 | 7.89 | 1.90 |
2019 | 284083 | The Crew: The Quest for Planet Nine | 47 | 9 | 38 | 7.77 | 7.88 | 1.98 |
2014 | 165722 | KLASK | 248 | 10 | 238 | 7.21 | 7.87 | 1.08 |
2019 | 266507 | Clank!: Legacy – Acquisitions Incorporated | 29 | 11 | 18 | 7.88 | 7.85 | 2.69 |
2015 | 156546 | Monikers | 317 | 12 | 305 | 7.12 | 7.83 | 1.06 |
2018 | 244521 | The Quacks of Quedlinburg | 59 | 13 | 46 | 7.69 | 7.82 | 1.95 |
2014 | 163412 | Patchwork | 99 | 14 | 85 | 7.53 | 7.82 | 1.62 |
2019 | 266192 | Wingspan | 23 | 15 | 8 | 7.94 | 7.81 | 2.44 |
2011 | 92828 | Dixit: Odyssey | 242 | 16 | 226 | 7.22 | 7.80 | 1.18 |
2009 | 46213 | Telestrations | 282 | 17 | 265 | 7.16 | 7.79 | 1.08 |
2018 | 225694 | Decrypto | 104 | 19 | 85 | 7.52 | 7.78 | 1.79 |
2017 | 224037 | Codenames: Duet | 189 | 18 | 171 | 7.32 | 7.78 | 1.34 |
2016 | 192291 | Sushi Go Party! | 216 | 20 | 196 | 7.28 | 7.77 | 1.31 |
2009 | 54043 | Jaipur | 152 | 21 | 131 | 7.39 | 7.76 | 1.48 |
2016 | 204583 | Kingdomino | 239 | 22 | 217 | 7.22 | 7.76 | 1.22 |
2012 | 129622 | Love Letter | 296 | 23 | 273 | 7.14 | 7.68 | 1.19 |
2016 | 167791 | Terraforming Mars | 5 | 25 | -20 | 8.27 | 7.67 | 3.25 |
2008 | 39856 | Dixit | 310 | 24 | 286 | 7.13 | 7.67 | 1.21 |
2019 | 263918 | Cartographers | 113 | 26 | 87 | 7.48 | 7.66 | 1.89 |
2020 | 316554 | Dune: Imperium | 15 | 27 | -12 | 8.03 | 7.65 | 2.99 |
2016 | 209010 | Mechs vs. Minions | 55 | 30 | 25 | 7.71 | 7.64 | 2.43 |
2016 | 201808 | Clank!: A Deck-Building Adventure | 71 | 31 | 40 | 7.65 | 7.64 | 2.22 |
2016 | 188834 | Secret Hitler | 209 | 29 | 180 | 7.29 | 7.64 | 1.68 |
2019 | 262543 | Wavelength | 409 | 28 | 381 | 7.00 | 7.64 | 1.11 |
2012 | 128882 | The Resistance: Avalon | 158 | 32 | 126 | 7.38 | 7.63 | 1.76 |
2017 | 232832 | Century: Golem Edition | 213 | 33 | 180 | 7.28 | 7.63 | 1.68 |
2018 | 260605 | Camel Up (Second Edition) | 290 | 34 | 256 | 7.15 | 7.63 | 1.47 |
2020 | 291457 | Gloomhaven: Jaws of the Lion | 4 | 36 | -32 | 8.27 | 7.62 | 3.59 |
2014 | 156129 | Deception: Murder in Hong Kong | 211 | 35 | 176 | 7.28 | 7.62 | 1.59 |
2018 | 233867 | Welcome To... | 138 | 37 | 101 | 7.42 | 7.61 | 1.83 |
2017 | 174430 | Gloomhaven | 1 | 38 | -37 | 8.50 | 7.60 | 3.87 |
2019 | 253344 | Cthulhu: Death May Die | 118 | 44 | 74 | 7.48 | 7.60 | 2.40 |
2015 | 182631 | Star Realms: Colony Wars | 184 | 42 | 142 | 7.33 | 7.60 | 1.92 |
2020 | 294484 | Unmatched: Cobble & Fog | 258 | 41 | 217 | 7.20 | 7.60 | 1.96 |
1997 | 172 | For Sale | 322 | 43 | 279 | 7.11 | 7.60 | 1.26 |
2019 | 274960 | Point Salad | 393 | 45 | 348 | 7.02 | 7.60 | 1.17 |
2011 | 92415 | Skull | 403 | 39 | 364 | 7.01 | 7.60 | 1.13 |
2019 | 277085 | Love Letter | 504 | 40 | 464 | 6.91 | 7.60 | 1.13 |
2018 | 244522 | That's Pretty Clever! | 142 | 47 | 95 | 7.41 | 7.58 | 1.88 |
2016 | 199478 | Flamme Rouge | 220 | 49 | 171 | 7.26 | 7.58 | 1.69 |
2019 | 274637 | Unmatched: Battle of Legends, Volume One | 244 | 48 | 196 | 7.22 | 7.58 | 1.90 |
2016 | 198773 | Codenames: Pictures | 365 | 50 | 315 | 7.06 | 7.58 | 1.25 |
1995 | 150 | PitchCar | 416 | 46 | 370 | 7.00 | 7.58 | 1.13 |
2018 | 199792 | Everdell | 27 | 54 | -27 | 7.88 | 7.57 | 2.81 |
2019 | 285774 | Marvel Champions: The Card Game | 36 | 53 | -17 | 7.81 | 7.57 | 2.87 |
2014 | 147020 | Star Realms | 129 | 51 | 78 | 7.44 | 7.57 | 1.94 |
2008 | 36553 | Time's Up! Title Recall! | 468 | 52 | 416 | 6.94 | 7.57 | 1.19 |
2016 | 205059 | Mansions of Madness: Second Edition | 46 | 56 | -10 | 7.77 | 7.56 | 2.67 |
2019 | 271320 | The Castles of Burgundy | 49 | 60 | -11 | 7.75 | 7.56 | 2.98 |
2005 | 14996 | Ticket to Ride: Europe | 137 | 55 | 82 | 7.42 | 7.56 | 1.93 |
2017 | 217372 | The Quest for El Dorado | 145 | 58 | 87 | 7.40 | 7.56 | 1.93 |
2019 | 282524 | Horrified | 156 | 57 | 99 | 7.38 | 7.56 | 2.04 |
2018 | 239188 | Chronicles of Crime | 192 | 59 | 133 | 7.32 | 7.56 | 2.08 |
2019 | 281259 | The Isle of Cats | 101 | 64 | 37 | 7.52 | 7.55 | 2.31 |
2019 | 266524 | PARKS | 120 | 62 | 58 | 7.47 | 7.55 | 2.16 |
2019 | 287954 | Azul: Summer Pavilion | 141 | 61 | 80 | 7.41 | 7.55 | 2.04 |
2013 | 158600 | Hanamikoji | 218 | 63 | 155 | 7.27 | 7.55 | 1.72 |
2014 | 148228 | Splendor | 190 | 65 | 125 | 7.32 | 7.54 | 1.79 |
2016 | 193042 | Junk Art | 457 | 66 | 391 | 6.95 | 7.54 | 1.22 |
2020 | 312484 | Lost Ruins of Arnak | 32 | 68 | -36 | 7.87 | 7.53 | 2.87 |
2020 | 314040 | Pandemic Legacy: Season 0 | 69 | 70 | -1 | 7.66 | 7.53 | 3.04 |
2010 | 68448 | 7 Wonders | 77 | 69 | 8 | 7.62 | 7.53 | 2.32 |
2016 | 194655 | Santorini | 208 | 67 | 141 | 7.29 | 7.53 | 1.73 |
2018 | 256952 | Zombie Kidz Evolution | 501 | 71 | 430 | 6.92 | 7.52 | 1.39 |
2011 | 84876 | The Castles of Burgundy | 16 | 72 | -56 | 8.01 | 7.51 | 3.00 |
2019 | 274364 | Watergate | 132 | 79 | 53 | 7.43 | 7.50 | 2.25 |
2017 | 199561 | Sagrada | 170 | 76 | 94 | 7.36 | 7.50 | 1.93 |
2007 | 31627 | Ticket to Ride: Nordic Countries | 174 | 78 | 96 | 7.34 | 7.50 | 1.98 |
2016 | 198994 | Hero Realms | 223 | 73 | 150 | 7.26 | 7.50 | 1.89 |
2017 | 223040 | Fantasy Realms | 253 | 75 | 178 | 7.20 | 7.50 | 1.74 |
2018 | 230253 | Star Realms: Frontiers | 321 | 74 | 247 | 7.11 | 7.50 | 1.88 |
2017 | 230914 | Carcassonne Big Box 6 | 383 | 77 | 306 | 7.04 | 7.50 | 1.98 |
2015 | 183394 | Viticulture Essential Edition | 26 | 87 | -61 | 7.89 | 7.49 | 2.89 |
2019 | 269385 | TheLordoftheRings:JourneysinMiddle-Earth | 92 | 84 | 8 | 7.55 | 7.49 | 2.60 |
2020 | 279537 | The Search for Planet X | 163 | 86 | 77 | 7.37 | 7.49 | 2.34 |
2016 | 209418 | Dominion (Second Edition) | 197 | 80 | 117 | 7.31 | 7.49 | 2.16 |
2004 | 9209 | Ticket to Ride | 199 | 82 | 117 | 7.30 | 7.49 | 1.84 |
2004 | 12942 | No Thanks! | 477 | 83 | 394 | 6.94 | 7.49 | 1.14 |
2013 | 133473 | Sushi Go! | 492 | 85 | 407 | 6.92 | 7.49 | 1.16 |
2011 | 153016 | Telestrations: 12 Player Party Pack | 628 | 81 | 547 | 6.79 | 7.49 | 1.07 |
2018 | 224517 | Brass: Birmingham | 3 | 88 | -85 | 8.42 | 7.48 | 3.90 |
2013 | 124361 | Concordia | 19 | 89 | -70 | 7.97 | 7.48 | 3.01 |
2000 | 822 | Carcassonne | 198 | 92 | 106 | 7.31 | 7.47 | 1.91 |
2014 | 160477 | Onitama | 269 | 91 | 178 | 7.18 | 7.47 | 1.68 |
2016 | 196326 | Love Letter Premium | 515 | 90 | 425 | 6.91 | 7.47 | 1.31 |
2018 | 167355 | Nemesis | 17 | 93 | -76 | 7.99 | 7.46 | 3.40 |
2019 | 271324 | It's a Wonderful World | 135 | 95 | 40 | 7.43 | 7.46 | 2.30 |
1999 | 50 | Lost Cities | 326 | 94 | 232 | 7.10 | 7.46 | 1.49 |
2012 | 110327 | Lords of Waterdeep | 80 | 96 | -16 | 7.62 | 7.45 | 2.46 |
2018 | 249259 | War Chest | 182 | 98 | 84 | 7.33 | 7.45 | 2.33 |
2009 | 41114 | The Resistance | 311 | 97 | 214 | 7.13 | 7.45 | 1.60 |
2019 | 270673 | Silver & Gold | 552 | 99 | 453 | 6.87 | 7.45 | 1.18 |
2019 | 268864 | Undaunted: Normandy | 187 | 104 | 83 | 7.32 | 7.44 | 2.24 |
2020 | 295486 | My City | 243 | 102 | 141 | 7.22 | 7.44 | 2.03 |
2020 | 302723 | Forgotten Waters | 284 | 101 | 183 | 7.16 | 7.44 | 2.10 |
2017 | 219513 | Bärenpark | 309 | 103 | 206 | 7.13 | 7.44 | 1.65 |
2011 | 70323 | King of Tokyo | 353 | 100 | 253 | 7.07 | 7.44 | 1.49 |
2012 | 117959 | Las Vegas | 544 | 105 | 439 | 6.88 | 7.44 | 1.18 |
2020 | 246900 | Eclipse: Second Dawn for the Galaxy | 31 | 109 | -78 | 7.87 | 7.43 | 3.59 |
2015 | 170216 | Blood Rage | 37 | 107 | -70 | 7.81 | 7.43 | 2.88 |
2018 | 244271 | Dice Throne: Season Two – Battle Chest | 338 | 108 | 230 | 7.08 | 7.43 | 2.16 |
2020 | 293141 | King of Tokyo: Dark Edition | 472 | 106 | 366 | 6.94 | 7.43 | 1.65 |
2016 | 191189 | Aeon's End | 66 | 111 | -45 | 7.67 | 7.42 | 2.78 |
2020 | 283155 | Calico | 175 | 110 | 65 | 7.34 | 7.42 | 2.20 |
2012 | 121288 | Dixit: Journey | 586 | 112 | 474 | 6.83 | 7.42 | 1.26 |
2009 | 40834 | Dominion: Intrigue | 91 | 114 | -23 | 7.55 | 7.41 | 2.42 |
1982 | 2653 | Survive: Escape from Atlantis! | 303 | 113 | 190 | 7.14 | 7.41 | 1.70 |
2020 | 298047 | Marvel United | 379 | 115 | 264 | 7.05 | 7.41 | 1.82 |
1999 | 1353 | Time's Up! | 574 | 116 | 458 | 6.84 | 7.41 | 1.21 |
2014 | 164928 | Orléans | 28 | 117 | -89 | 7.88 | 7.40 | 3.04 |
2017 | 180263 | The 7th Continent | 58 | 119 | -61 | 7.70 | 7.40 | 2.90 |
2017 | 209685 | Century: Spice Road | 280 | 120 | 160 | 7.16 | 7.40 | 1.78 |
2014 | 147949 | One Night Ultimate Werewolf | 480 | 118 | 362 | 6.94 | 7.40 | 1.38 |
2008 | 36218 | Dominion | 108 | 123 | -15 | 7.49 | 7.39 | 2.35 |
2017 | 218417 | Aeon's End: War Eternal | 111 | 122 | -11 | 7.49 | 7.39 | 2.94 |
2020 | 293014 | Nidavellir | 219 | 124 | 95 | 7.26 | 7.39 | 2.14 |
2015 | 168584 | Love Letter: Batman | 624 | 121 | 503 | 6.79 | 7.39 | 1.20 |
2017 | 233371 | Clank! In! Space!: A Deck-Building Adventure | 110 | 127 | -17 | 7.49 | 7.38 | 2.53 |
2016 | 198928 | Pandemic: Iberia | 116 | 126 | -10 | 7.48 | 7.38 | 2.58 |
2018 | 242302 | Space Base | 194 | 125 | 69 | 7.31 | 7.38 | 2.12 |
2015 | 170042 | Raiders of the North Sea | 93 | 130 | -37 | 7.55 | 7.37 | 2.54 |
2000 | 760 | Battle Line | 252 | 129 | 123 | 7.21 | 7.37 | 1.90 |
2019 | 264055 | Draftosaurus | 568 | 128 | 440 | 6.84 | 7.37 | 1.26 |
2016 | 169786 | Scythe | 14 | 131 | -117 | 8.06 | 7.36 | 3.43 |
2016 | 171131 | Captain Sonar | 178 | 135 | 43 | 7.34 | 7.36 | 2.17 |
2018 | 245654 | Railroad Ink: Deep Blue Edition | 467 | 132 | 335 | 6.94 | 7.36 | 1.48 |
2012 | 135779 | A Fake Artist Goes to New York | 668 | 134 | 534 | 6.77 | 7.36 | 1.14 |
2017 | 218333 | Rhino Hero: Super Battle | 709 | 133 | 576 | 6.73 | 7.36 | 1.11 |
2016 | 187645 | Star Wars: Rebellion | 8 | 138 | -130 | 8.17 | 7.35 | 3.73 |
2010 | 154597 | Hive Pocket | 183 | 136 | 47 | 7.33 | 7.35 | 2.29 |
2015 | 163166 | One Night Ultimate Werewolf: Daybreak | 567 | 137 | 430 | 6.84 | 7.35 | 1.42 |
2008 | 30549 | Pandemic | 114 | 141 | -27 | 7.48 | 7.34 | 2.41 |
2012 | 118048 | Targi | 131 | 139 | -8 | 7.44 | 7.34 | 2.35 |
2004 | 10630 | Memoir '44 | 155 | 140 | 15 | 7.38 | 7.34 | 2.27 |
2015 | 183251 | Karuba | 507 | 143 | 364 | 6.91 | 7.34 | 1.45 |
1994 | 432 | 6 nimmt! | 607 | 142 | 465 | 6.81 | 7.34 | 1.20 |
2017 | 215311 | Downforce | 370 | 144 | 226 | 7.05 | 7.33 | 1.73 |
2018 | 244992 | The Mind | 736 | 146 | 590 | 6.72 | 7.33 | 1.07 |
2004 | 16747 | Tumblin-Dice | 775 | 145 | 630 | 6.69 | 7.33 | 1.04 |
2012 | 103885 | Star Wars: X-Wing Miniatures Game | 134 | 151 | -17 | 7.43 | 7.32 | 2.49 |
2016 | 189932 | Tyrants of the Underdark | 177 | 150 | 27 | 7.34 | 7.32 | 2.55 |
2019 | 274638 | Unmatched: Robin Hood vs. Bigfoot | 528 | 149 | 379 | 6.89 | 7.32 | 1.94 |
2020 | 260180 | Project L | 584 | 148 | 436 | 6.83 | 7.32 | 1.53 |
2011 | 91514 | Rhino Hero | 795 | 147 | 648 | 6.68 | 7.32 | 1.02 |
2005 | 12333 | Twilight Struggle | 13 | 155 | -142 | 8.11 | 7.31 | 3.60 |
2011 | 108687 | Puerto Rico | 79 | 153 | -74 | 7.62 | 7.31 | 3.27 |
2017 | 206718 | Ethnos | 263 | 160 | 103 | 7.19 | 7.31 | 2.03 |
2019 | 264241 | Mandala | 437 | 154 | 283 | 6.97 | 7.31 | 1.78 |
2013 | 150145 | Skull King | 452 | 152 | 300 | 6.96 | 7.31 | 1.71 |
2012 | 131357 | Coup | 553 | 158 | 395 | 6.87 | 7.31 | 1.41 |
2003 | 5782 | Coloretto | 589 | 157 | 432 | 6.83 | 7.31 | 1.28 |
2014 | 169654 | Deep Sea Adventure | 694 | 156 | 538 | 6.74 | 7.31 | 1.17 |
2017 | 227456 | Escape the Dark Castle | 1,315 | 159 | 1,156 | 6.38 | 7.31 | 1.22 |
2015 | 172287 | Champions of Midgard | 112 | 162 | -50 | 7.48 | 7.30 | 2.59 |
2020 | 306735 | Under Falling Skies | 201 | 161 | 40 | 7.30 | 7.30 | 2.47 |
1999 | 372 | Schotten Totten | 401 | 163 | 238 | 7.02 | 7.30 | 1.72 |
2018 | 236457 | Architects of the West Kingdom | 83 | 169 | -86 | 7.58 | 7.29 | 2.76 |
2015 | 181304 | Mysterium | 302 | 165 | 137 | 7.14 | 7.29 | 1.91 |
2007 | 34219 | Biblios | 392 | 164 | 228 | 7.02 | 7.29 | 1.68 |
2017 | 221965 | The Fox in the Forest | 465 | 167 | 298 | 6.94 | 7.29 | 1.58 |
2014 | 153938 | Camel Up | 519 | 168 | 351 | 6.90 | 7.29 | 1.47 |
2017 | 207830 | 5-Minute Dungeon | 851 | 166 | 685 | 6.64 | 7.29 | 1.12 |
2019 | 264220 | Tainted Grail: The Fall of Avalon | 84 | 173 | -89 | 7.58 | 7.28 | 3.29 |
2018 | 251658 | Sprawlopolis | 395 | 174 | 221 | 7.02 | 7.28 | 1.85 |
2013 | 143741 | BANG! The Dice Game | 634 | 170 | 464 | 6.79 | 7.28 | 1.28 |
2005 | 20100 | Wits & Wagers | 675 | 171 | 504 | 6.76 | 7.28 | 1.21 |
2019 | 283864 | Trails of Tucana | 745 | 172 | 573 | 6.71 | 7.28 | 1.26 |
2019 | 262712 | Res Arcana | 123 | 176 | -53 | 7.46 | 7.27 | 2.61 |
2018 | 233398 | Endeavor: Age of Sail | 126 | 177 | -51 | 7.44 | 7.27 | 2.81 |
2014 | 157969 | Sheriff of Nottingham | 417 | 175 | 242 | 6.99 | 7.27 | 1.65 |
2017 | 221107 | Pandemic Legacy: Season 2 | 44 | 180 | -136 | 7.78 | 7.26 | 3.24 |
1991 | 215 | Tichu | 196 | 179 | 17 | 7.31 | 7.26 | 2.34 |
2016 | 199042 | Harry Potter: Hogwarts Battle | 320 | 178 | 142 | 7.11 | 7.26 | 2.09 |
2020 | 316377 | 7 Wonders (Second Edition) | 489 | 181 | 308 | 6.93 | 7.26 | 2.22 |
2005 | 15512 | Diamant | 773 | 182 | 591 | 6.69 | 7.26 | 1.11 |
2017 | 233078 | Twilight Imperium: Fourth Edition | 6 | 188 | -182 | 8.26 | 7.25 | 4.26 |
2016 | 193738 | Great Western Trail | 12 | 191 | -179 | 8.12 | 7.25 | 3.71 |
2016 | 205637 | Arkham Horror: The Card Game | 24 | 189 | -165 | 7.93 | 7.25 | 3.49 |
2014 | 157354 | Five Tribes | 75 | 192 | -117 | 7.64 | 7.25 | 2.85 |
2008 | 34635 | Stone Age | 133 | 184 | -51 | 7.43 | 7.25 | 2.47 |
2015 | 176189 | Zombicide: Black Plague | 204 | 183 | 21 | 7.29 | 7.25 | 2.50 |
2014 | 156009 | Port Royal | 488 | 187 | 301 | 6.93 | 7.25 | 1.62 |
1995 | 220 | High Society | 551 | 185 | 366 | 6.87 | 7.25 | 1.50 |
1980 | 41 | Can't Stop | 757 | 186 | 571 | 6.70 | 7.25 | 1.15 |
2012 | 131260 | Qwixx | 816 | 190 | 626 | 6.67 | 7.25 | 1.11 |
2018 | 231733 | Obsession | 151 | 194 | -43 | 7.39 | 7.24 | 3.15 |
2011 | 70919 | Takenoko | 312 | 196 | 116 | 7.12 | 7.24 | 1.97 |
2018 | 246192 | Gizmos | 336 | 195 | 141 | 7.09 | 7.24 | 2.02 |
2020 | 291794 | Dice Throne: Season One ReRolled | 617 | 193 | 424 | 6.80 | 7.24 | 2.07 |
2014 | 146652 | LegendaryEncounters:AnAlienDeckBuildingGame | 130 | 200 | -70 | 7.44 | 7.23 | 2.70 |
2018 | 256916 | Concordia Venus | 150 | 197 | -47 | 7.39 | 7.23 | 3.07 |
2012 | 129437 | Legendary: A Marvel Deck Building Game | 203 | 202 | 1 | 7.29 | 7.23 | 2.44 |
2016 | 204305 | ShrlckHlmsCnsltngDtctv:JckthRppr&WstEndAdvntr | 349 | 201 | 148 | 7.07 | 7.23 | 2.20 |
2019 | 245655 | The King's Dilemma | 384 | 199 | 185 | 7.04 | 7.23 | 2.30 |
2017 | 219215 | Werewords | 854 | 198 | 656 | 6.64 | 7.23 | 1.16 |
1982 | 2511 | SherlockHolmsCnsltngDtctv:ThThmsMrdrs&OthrCss | 119 | 206 | -87 | 7.47 | 7.22 | 2.67 |
2011 | 25021 | Sekigahara: The Unification of Japan | 171 | 203 | -32 | 7.35 | 7.22 | 2.80 |
2018 | 256226 | Azul: Stained Glass of Sintra | 350 | 207 | 143 | 7.07 | 7.22 | 2.01 |
2010 | 98778 | Hanabi | 436 | 208 | 228 | 6.97 | 7.22 | 1.69 |
2019 | 258210 | Blitzkrieg!: World War Two in 20 Minutes | 526 | 204 | 322 | 6.89 | 7.22 | 1.86 |
1800 | 45 | Perudo | 732 | 205 | 527 | 6.72 | 7.22 | 1.26 |
1999 | 12 | Ra | 193 | 214 | -21 | 7.31 | 7.21 | 2.35 |
2015 | 176494 | Isle of Skye: From Chieftain to King | 225 | 210 | 15 | 7.26 | 7.21 | 2.24 |
2018 | 246784 | Cryptid | 276 | 216 | 60 | 7.17 | 7.21 | 2.22 |
2017 | 186751 | Mythic Battles: Pantheon | 342 | 209 | 133 | 7.08 | 7.21 | 3.04 |
2019 | 270633 | Aeon's End: The New Age | 343 | 212 | 131 | 7.08 | 7.21 | 2.93 |
2020 | 319966 | The King Is Dead: Second Edition | 441 | 215 | 226 | 6.96 | 7.21 | 2.13 |
2014 | 166384 | Spyfall | 747 | 211 | 536 | 6.71 | 7.21 | 1.24 |
2016 | 177524 | ICECOOL | 934 | 213 | 721 | 6.59 | 7.21 | 1.03 |
2002 | 3076 | Puerto Rico | 34 | 223 | -189 | 7.83 | 7.20 | 3.28 |
2016 | 155821 | Inis | 106 | 222 | -116 | 7.51 | 7.20 | 2.88 |
2014 | 155068 | Arcadia Quest | 222 | 230 | -8 | 7.26 | 7.20 | 2.53 |
2019 | 241451 | Aeon's End: Legacy | 230 | 221 | 9 | 7.25 | 7.20 | 2.84 |
2019 | 271896 | Star Wars: Outer Rim | 246 | 227 | 19 | 7.21 | 7.20 | 2.49 |
2015 | 171908 | El Grande Big Box | 265 | 229 | 36 | 7.19 | 7.20 | 2.79 |
2016 | 188866 | Awkward Guests | 318 | 224 | 94 | 7.12 | 7.20 | 2.31 |
2014 | 166669 | San Juan (Second Edition) | 361 | 228 | 133 | 7.06 | 7.20 | 2.07 |
2017 | 194594 | Dice Forge | 371 | 218 | 153 | 7.05 | 7.20 | 1.96 |
1997 | 11 | Bohnanza | 484 | 219 | 265 | 6.93 | 7.20 | 1.67 |
2019 | 247367 | Air, Land, and Sea | 549 | 220 | 329 | 6.87 | 7.20 | 1.79 |
2014 | 155362 | Ca$h 'n Guns (Second Edition) | 768 | 226 | 542 | 6.70 | 7.20 | 1.25 |
2018 | 256788 | Detective Club | 889 | 225 | 664 | 6.62 | 7.20 | 1.27 |
2019 | 270314 | Ohanami | 931 | 217 | 714 | 6.59 | 7.20 | 1.13 |
1992 | 118 | Modern Art | 221 | 231 | -10 | 7.26 | 7.19 | 2.30 |
2015 | 163967 | Tiny Epic Galaxies | 289 | 239 | 50 | 7.15 | 7.19 | 2.15 |
2015 | 161614 | Stockpile | 376 | 240 | 136 | 7.05 | 7.19 | 2.12 |
2015 | 180974 | Potion Explosion | 466 | 232 | 234 | 6.94 | 7.19 | 1.76 |
2018 | 216734 | Dice Throne: Season One | 554 | 234 | 320 | 6.86 | 7.19 | 2.07 |
2012 | 113294 | Escape: The Curse of the Temple | 601 | 233 | 368 | 6.81 | 7.19 | 1.48 |
2018 | 251678 | Railroad Ink: Blazing Red Edition | 716 | 237 | 479 | 6.73 | 7.19 | 1.42 |
2015 | 175117 | Celestia | 761 | 236 | 525 | 6.70 | 7.19 | 1.33 |
2017 | 195314 | Herbaceous | 905 | 238 | 667 | 6.61 | 7.19 | 1.20 |
2013 | 145639 | Coconuts | 1,003 | 235 | 768 | 6.54 | 7.19 | 1.04 |
2006 | 14105 | Commands & Colors: Ancients | 172 | 243 | -71 | 7.35 | 7.18 | 2.69 |
2018 | 223321 | Detective: A Modern Crime Board Game | 186 | 241 | -55 | 7.32 | 7.18 | 2.74 |
2007 | 28023 | Jamaica | 533 | 242 | 291 | 6.89 | 7.18 | 1.65 |
2014 | 172931 | Outfoxed! | 1,018 | 244 | 774 | 6.54 | 7.18 | 1.13 |
2014 | 164153 | Star Wars: Imperial Assault | 56 | 249 | -193 | 7.71 | 7.17 | 3.30 |
2014 | 148949 | Istanbul | 139 | 246 | -107 | 7.42 | 7.17 | 2.59 |
2016 | 169426 | Roll Player | 210 | 247 | -37 | 7.28 | 7.17 | 2.41 |
2015 | 140934 | Arboretum | 291 | 245 | 46 | 7.15 | 7.17 | 2.15 |
2020 | 286749 | Hansa Teutonica: Big Box | 325 | 248 | 77 | 7.10 | 7.17 | 2.83 |
2007 | 28143 | Race for the Galaxy | 70 | 257 | -187 | 7.65 | 7.16 | 2.99 |
This gets us a list of games that is wildly different than before, and it’s a list of games that are much more palatable to “normal people”. In my mind, Crokinole taking the top spot makes a ton of sense and I will die on this hill.
I’ll make an interactive table here so it’s easy to search for games and compare how games stack up on the different rankings.
Which games have moved up and down the most? We can look at the difference between the BGG Rank and the Complexity adjusted ranks.
We want to focus in on the games that see a positive and negative shift in particular. Let’s look at the games that are penalized the most.
date | name | geekrating | adjustedrating | rating_diff |
2022-04-08 | Through the Ages: A New Story of Civilization | 8.14 | 6.91 | -1.22 |
2022-04-08 | Mage Knight Board Game | 7.87 | 6.70 | -1.17 |
2022-04-08 | Gaia Project | 8.17 | 7.01 | -1.16 |
2022-04-08 | On Mars | 7.72 | 6.58 | -1.14 |
2022-04-08 | Lisboa | 7.68 | 6.58 | -1.11 |
2022-04-08 | Through the Ages: A Story of Civilization | 7.66 | 6.58 | -1.09 |
2022-04-08 | Twilight Imperium: Third Edition | 7.55 | 6.46 | -1.09 |
2022-04-08 | Food Chain Magnate | 7.83 | 6.76 | -1.08 |
2022-04-08 | The Gallerist | 7.69 | 6.64 | -1.05 |
2022-04-08 | Dominant Species | 7.61 | 6.59 | -1.02 |
2022-04-08 | Terra Mystica | 7.96 | 6.94 | -1.02 |
2022-04-08 | Spirit Island | 8.14 | 7.13 | -1.01 |
2022-04-08 | Twilight Imperium: Fourth Edition | 8.26 | 7.25 | -1.01 |
2022-04-08 | War of the Ring: Second Edition | 8.14 | 7.15 | -0.99 |
2022-04-08 | Kanban: Driver's Edition | 7.29 | 6.32 | -0.97 |
2022-04-08 | Die Macher | 7.10 | 6.15 | -0.95 |
2022-04-08 | Trickerion: Legends of Illusion | 7.48 | 6.53 | -0.94 |
2022-04-08 | Brass: Birmingham | 8.42 | 7.48 | -0.94 |
2022-04-08 | Alchemists | 7.44 | 6.51 | -0.94 |
2022-04-08 | Brass: Lancashire | 7.97 | 7.04 | -0.93 |
2022-04-08 | Anachrony | 7.75 | 6.85 | -0.91 |
2022-04-08 | Robinson Crusoe: Adventures on the Cursed Island | 7.64 | 6.73 | -0.91 |
2022-04-08 | Caylus | 7.57 | 6.66 | -0.90 |
2022-04-08 | Caverna: The Cave Farmers | 7.82 | 6.91 | -0.90 |
2022-04-08 | Barrage | 7.80 | 6.90 | -0.90 |
2022-04-08 | A Feast for Odin | 7.96 | 7.06 | -0.89 |
2022-04-08 | Gloomhaven | 8.50 | 7.60 | -0.89 |
2022-04-08 | Le Havre | 7.71 | 6.82 | -0.89 |
2022-04-08 | Sid Meier's Civilization: The Board Game | 7.14 | 6.25 | -0.88 |
2022-04-08 | Mombasa | 7.54 | 6.67 | -0.87 |
2022-04-08 | Great Western Trail | 8.12 | 7.25 | -0.87 |
2022-04-08 | Go | 7.32 | 6.46 | -0.86 |
2022-04-08 | Ora et Labora | 7.36 | 6.50 | -0.86 |
2022-04-08 | Tzolk'in: The Mayan Calendar | 7.74 | 6.88 | -0.86 |
2022-04-08 | Age of Steam | 7.44 | 6.59 | -0.85 |
2022-04-08 | Madeira | 6.96 | 6.11 | -0.85 |
2022-04-08 | Agricola | 7.80 | 6.95 | -0.85 |
2022-04-08 | Vinhos | 6.92 | 6.07 | -0.85 |
2022-04-08 | Root | 7.89 | 7.05 | -0.84 |
2022-04-08 | Advanced Squad Leader | 7.05 | 6.21 | -0.84 |
2022-04-08 | Eclipse | 7.67 | 6.84 | -0.84 |
2022-04-08 | Antiquity | 7.17 | 6.33 | -0.83 |
2022-04-08 | Teotihuacan: City of Gods | 7.64 | 6.81 | -0.83 |
2022-04-08 | Maracaibo | 7.78 | 6.95 | -0.83 |
2022-04-08 | A Game of Thrones: The Board Game (Second Edition) | 7.36 | 6.54 | -0.82 |
2022-04-08 | Star Wars: Rebellion | 8.17 | 7.35 | -0.82 |
2022-04-08 | 1830: Railways & Robber Barons | 7.25 | 6.43 | -0.82 |
2022-04-08 | The Republic of Rome | 6.85 | 6.04 | -0.81 |
2022-04-08 | Feudum | 6.80 | 6.00 | -0.81 |
2022-04-08 | Chess | 6.97 | 6.17 | -0.81 |
This list makes a lot of sense to me - the ratings themselves are still pretty good for some of these games, but these are all very, very heavy games. A lot of Vital Lacerda showing up in here, which to me epitomizes the disconnect between Geek Ratings and ‘ratings for people who fun games’. The former is heavily slanted towards people who relish complexity, whereas the latter is slanted towards games that provide heavy bang for their buck in terms of their weight.
The list of games that go up the most is on the other hand very light, party games. Even with the boost from being simple, many of these games still aren’t rated that highly, though some notable ones (Monikers, MicroMacro, KLASK, Just One) end up near the top of the overall list.
date | name | geekrating | adjustedrating | rating_diff |
2022-04-08 | Escape the Dark Castle | 6.38 | 7.31 | 0.93 |
2022-04-08 | Virus! | 6.27 | 6.99 | 0.72 |
2022-04-08 | Monikers | 7.12 | 7.83 | 0.71 |
2022-04-08 | The Fantasy Trip: Legacy Edition | 5.73 | 6.44 | 0.71 |
2022-04-08 | Telestrations: 12 Player Party Pack | 6.79 | 7.49 | 0.70 |
2022-04-08 | Exploding Kittens | 5.86 | 6.56 | 0.70 |
2022-04-08 | Love Letter | 6.91 | 7.60 | 0.69 |
2022-04-08 | Exploding Kittens: NSFW Deck | 5.97 | 6.65 | 0.68 |
2022-04-08 | Arena: The Contest | 6.03 | 6.71 | 0.67 |
2022-04-08 | KLASK | 7.21 | 7.87 | 0.66 |
2022-04-08 | The Binding of Isaac: Four Souls | 5.98 | 6.64 | 0.66 |
2022-04-08 | Dungeon Mayhem | 6.24 | 6.90 | 0.66 |
2022-04-08 | Cross Clues | 6.31 | 6.96 | 0.66 |
2022-04-08 | Love Letter: Adventure Time | 6.30 | 6.95 | 0.65 |
2022-04-08 | Spot it! | 6.43 | 7.07 | 0.65 |
2022-04-08 | 5-Minute Dungeon | 6.64 | 7.29 | 0.65 |
2022-04-08 | Coconuts | 6.54 | 7.19 | 0.65 |
2022-04-08 | Rhino Hero | 6.68 | 7.32 | 0.64 |
2022-04-08 | Tumblin-Dice | 6.69 | 7.33 | 0.64 |
2022-04-08 | Joking Hazard | 6.06 | 6.70 | 0.64 |
2022-04-08 | Taco Cat Goat Cheese Pizza | 6.12 | 6.76 | 0.64 |
2022-04-08 | Wavelength | 7.00 | 7.64 | 0.64 |
2022-04-08 | Just One | 7.40 | 8.04 | 0.64 |
2022-04-08 | MicroMacro: Crime City | 7.28 | 7.92 | 0.64 |
2022-04-08 | Outfoxed! | 6.54 | 7.18 | 0.64 |
2022-04-08 | Imagine | 6.38 | 7.02 | 0.63 |
2022-04-08 | Telestrations | 7.16 | 7.79 | 0.63 |
2022-04-08 | Men at Work | 6.53 | 7.15 | 0.63 |
2022-04-08 | Rhino Hero: Super Battle | 6.73 | 7.36 | 0.63 |
2022-04-08 | Time's Up! Title Recall! | 6.94 | 7.57 | 0.62 |
2022-04-08 | Cards Against Humanity | 5.67 | 6.30 | 0.62 |
2022-04-08 | Sleeping Queens | 6.09 | 6.71 | 0.62 |
2022-04-08 | ICECOOL | 6.59 | 7.21 | 0.62 |
2022-04-08 | Animal Upon Animal | 6.55 | 7.16 | 0.62 |
2022-04-08 | Anomia | 6.24 | 6.86 | 0.62 |
2022-04-08 | Ohanami | 6.59 | 7.20 | 0.61 |
2022-04-08 | UNO | 5.32 | 5.93 | 0.61 |
2022-04-08 | Telestrations After Dark | 6.13 | 6.74 | 0.61 |
2022-04-08 | The Mind | 6.72 | 7.33 | 0.61 |
2022-04-08 | Orchard: A 9 card solitaire game | 6.55 | 7.16 | 0.61 |
2022-04-08 | Strike | 6.32 | 6.92 | 0.61 |
2022-04-08 | Loopin' Louie | 6.54 | 7.14 | 0.61 |
2022-04-08 | The Chameleon | 6.16 | 6.77 | 0.60 |
2022-04-08 | Zombie Dice | 6.08 | 6.69 | 0.60 |
2022-04-08 | Zombie Kidz Evolution | 6.92 | 7.52 | 0.60 |
2022-04-08 | Love Letter: Batman | 6.79 | 7.39 | 0.60 |
2022-04-08 | Pictures | 6.30 | 6.90 | 0.60 |
2022-04-08 | Timeline: General Interest | 6.37 | 6.97 | 0.60 |
2022-04-08 | Insider | 6.52 | 7.12 | 0.60 |
2022-04-08 | Exploding Kittens: Party Pack | 5.98 | 6.58 | 0.60 |
Let’s restrict to games inside the BGG Top 100 and see how these games are affected.
date | name | geekrating | adjustedrating | rank_diff |
2022-04-08 | Ticket to Ride: 10th Anniversary | 7.53 | 7.89 | 92 |
2022-04-08 | Patchwork | 7.53 | 7.82 | 85 |
2022-04-08 | Crokinole | 7.69 | 8.22 | 59 |
2022-04-08 | Azul | 7.68 | 7.90 | 56 |
2022-04-08 | The Quacks of Quedlinburg | 7.69 | 7.82 | 46 |
2022-04-08 | Clank!: A Deck-Building Adventure | 7.65 | 7.64 | 40 |
2022-04-08 | The Crew: The Quest for Planet Nine | 7.77 | 7.88 | 38 |
2022-04-08 | Mechs vs. Minions | 7.71 | 7.64 | 25 |
2022-04-08 | Clank!: Legacy – Acquisitions Incorporated | 7.88 | 7.85 | 18 |
2022-04-08 | 7 Wonders Duel | 7.98 | 7.95 | 13 |
2022-04-08 | The Lord of the Rings: Journeys in Middle-Earth | 7.55 | 7.49 | 8 |
2022-04-08 | 7 Wonders | 7.62 | 7.53 | 8 |
2022-04-08 | Wingspan | 7.94 | 7.81 | 8 |
2022-04-08 | Pandemic Legacy: Season 1 | 8.44 | 8.06 | 0 |
2022-04-08 | Pandemic Legacy: Season 0 | 7.66 | 7.53 | -1 |
2022-04-08 | Mansions of Madness: Second Edition | 7.77 | 7.56 | -10 |
2022-04-08 | The Castles of Burgundy | 7.75 | 7.56 | -11 |
2022-04-08 | Dune: Imperium | 8.03 | 7.65 | -12 |
2022-04-08 | Lords of Waterdeep | 7.62 | 7.45 | -16 |
2022-04-08 | Marvel Champions: The Card Game | 7.81 | 7.57 | -17 |
2022-04-08 | Terraforming Mars | 8.27 | 7.67 | -20 |
2022-04-08 | Dominion: Intrigue | 7.55 | 7.41 | -23 |
2022-04-08 | Everdell | 7.88 | 7.57 | -27 |
2022-04-08 | Gloomhaven: Jaws of the Lion | 8.27 | 7.62 | -32 |
2022-04-08 | Lost Ruins of Arnak | 7.87 | 7.53 | -36 |
2022-04-08 | Raiders of the North Sea | 7.55 | 7.37 | -37 |
2022-04-08 | Gloomhaven | 8.50 | 7.60 | -37 |
2022-04-08 | Aeon's End | 7.67 | 7.42 | -45 |
2022-04-08 | The Castles of Burgundy | 8.01 | 7.51 | -56 |
2022-04-08 | The 7th Continent | 7.70 | 7.40 | -61 |
2022-04-08 | Viticulture Essential Edition | 7.89 | 7.49 | -61 |
2022-04-08 | Blood Rage | 7.81 | 7.43 | -70 |
2022-04-08 | Concordia | 7.97 | 7.48 | -70 |
2022-04-08 | Puerto Rico | 7.62 | 7.31 | -74 |
2022-04-08 | Nemesis | 7.99 | 7.46 | -76 |
2022-04-08 | Eclipse: Second Dawn for the Galaxy | 7.87 | 7.43 | -78 |
2022-04-08 | Brass: Birmingham | 8.42 | 7.48 | -85 |
2022-04-08 | Architects of the West Kingdom | 7.58 | 7.29 | -86 |
2022-04-08 | Tainted Grail: The Fall of Avalon | 7.58 | 7.28 | -89 |
2022-04-08 | Orléans | 7.88 | 7.40 | -89 |
2022-04-08 | Five Tribes | 7.64 | 7.25 | -117 |
2022-04-08 | Scythe | 8.06 | 7.36 | -117 |
2022-04-08 | Star Wars: Rebellion | 8.17 | 7.35 | -130 |
2022-04-08 | Pandemic Legacy: Season 2 | 7.78 | 7.26 | -136 |
2022-04-08 | Twilight Struggle | 8.11 | 7.31 | -142 |
2022-04-08 | Arkham Horror: The Card Game | 7.93 | 7.25 | -165 |
2022-04-08 | Great Western Trail | 8.12 | 7.25 | -179 |
2022-04-08 | Twilight Imperium: Fourth Edition | 8.26 | 7.25 | -182 |
2022-04-08 | Race for the Galaxy | 7.65 | 7.16 | -187 |
2022-04-08 | Puerto Rico | 7.83 | 7.20 | -189 |
2022-04-08 | Star Wars: Imperial Assault | 7.71 | 7.17 | -193 |
2022-04-08 | El Grande | 7.57 | 7.08 | -220 |
2022-04-08 | Too Many Bones | 7.81 | 7.15 | -224 |
2022-04-08 | Grand Austria Hotel | 7.61 | 7.08 | -233 |
2022-04-08 | The Voyages of Marco Polo | 7.63 | 7.08 | -235 |
2022-04-08 | Pax Pamir: Second Edition | 7.77 | 7.09 | -253 |
2022-04-08 | Power Grid | 7.73 | 7.08 | -254 |
2022-04-08 | War of the Ring: Second Edition | 8.14 | 7.15 | -255 |
2022-04-08 | Kingdom Death: Monster | 7.72 | 7.08 | -258 |
2022-04-08 | Spirit Island | 8.14 | 7.13 | -263 |
2022-04-08 | Underwater Cities | 7.78 | 7.06 | -283 |
2022-04-08 | Clans of Caledonia | 7.72 | 7.05 | -295 |
2022-04-08 | Rising Sun | 7.53 | 7.00 | -298 |
2022-04-08 | Lorenzo il Magnifico | 7.53 | 7.00 | -303 |
2022-04-08 | Mage Knight: Ultimate Edition | 7.79 | 7.05 | -304 |
2022-04-08 | A Feast for Odin | 7.96 | 7.06 | -308 |
2022-04-08 | Agricola (Revised Edition) | 7.62 | 7.01 | -311 |
2022-04-08 | Android: Netrunner | 7.66 | 7.02 | -312 |
2022-04-08 | Root | 7.89 | 7.05 | -317 |
2022-04-08 | Eldritch Horror | 7.54 | 6.97 | -330 |
2022-04-08 | Battlestar Galactica: The Board Game | 7.56 | 6.98 | -334 |
2022-04-08 | Brass: Lancashire | 7.97 | 7.04 | -334 |
2022-04-08 | Gaia Project | 8.17 | 7.01 | -376 |
2022-04-08 | Keyflower | 7.58 | 6.93 | -404 |
2022-04-08 | Maracaibo | 7.78 | 6.95 | -411 |
2022-04-08 | Agricola | 7.80 | 6.95 | -421 |
2022-04-08 | Paladins of the West Kingdom | 7.67 | 6.93 | -422 |
2022-04-08 | Terra Mystica | 7.96 | 6.94 | -451 |
2022-04-08 | Caverna: The Cave Farmers | 7.82 | 6.91 | -473 |
2022-04-08 | Barrage | 7.80 | 6.90 | -493 |
2022-04-08 | Through the Ages: A New Story of Civilization | 8.14 | 6.91 | -499 |
2022-04-08 | Tzolk'in: The Mayan Calendar | 7.74 | 6.88 | -517 |
2022-04-08 | Troyes | 7.55 | 6.83 | -537 |
2022-04-08 | Fields of Arle | 7.64 | 6.84 | -545 |
2022-04-08 | Eclipse | 7.67 | 6.84 | -560 |
2022-04-08 | Anachrony | 7.75 | 6.85 | -564 |
2022-04-08 | Teotihuacan: City of Gods | 7.64 | 6.81 | -584 |
2022-04-08 | Le Havre | 7.71 | 6.82 | -589 |
2022-04-08 | Tigris & Euphrates | 7.53 | 6.78 | -608 |
2022-04-08 | Food Chain Magnate | 7.83 | 6.76 | -715 |
2022-04-08 | Robinson Crusoe: Adventures on the Cursed Island | 7.64 | 6.73 | -730 |
2022-04-08 | Mombasa | 7.54 | 6.67 | -825 |
2022-04-08 | Mage Knight Board Game | 7.87 | 6.70 | -833 |
2022-04-08 | Caylus | 7.57 | 6.66 | -853 |
2022-04-08 | The Gallerist | 7.69 | 6.64 | -933 |
2022-04-08 | Dominant Species | 7.61 | 6.59 | -1,019 |
2022-04-08 | Through the Ages: A Story of Civilization | 7.66 | 6.58 | -1,077 |
2022-04-08 | On Mars | 7.72 | 6.58 | -1,080 |
2022-04-08 | Lisboa | 7.68 | 6.58 | -1,083 |
2022-04-08 | Twilight Imperium: Third Edition | 7.55 | 6.46 | -1,369 |
It’s important to remember that this is meant to be a ranking list for someone who sees complexity as a negative moreso than a positive. Terra Mystica and Gaia Project might be great games for someone like me who is into the hobby, but would it rank highly for someone who isn’t that keen on games? Probably not.
The list of complexity adjusted games is pretty great for recommending games to a beginner, but it’s not as helpful for people who have been in the hobby longer. If you do like more complex games, what list should you look at? The Geek list as it currently stands is still probably good, but its not without its problems.
The Geek Ratings are heavily skewed towards games that have been released in recent years: all of the top 10 games were released after 2015, and only 5 of the top 50 were released prior to 2010. Either we truly seeing the pinnacle of game design in the last 10 years (this is possible), or it means that the BGG users have a tendency to seek out and rate the hotness, which skews the list towards recent games.
active_games %>%
arrange(desc(bayesaverage)) %>%
mutate(rank = row_number()) %>%
arrange(rank) %>%
mutate(date = as.Date(timestamp)) %>%
select(date, name, rank, game_id, bayesaverage, yearpublished) %>%
mutate(yearpublished = as.character(yearpublished),
game_id = as.character(game_id)) %>%
select(yearpublished, game_id, name, yearpublished, rank, bayesaverage) %>%
mutate_if(is.numeric, round, 2) %>%
head(50) %>%
flextable() %>%
flextable::autofit() %>%
bg(., i = ~ (yearpublished %in% seq(2011, 2014, 1)),
bg = "#EFF3FF") %>%
bg(., i = ~ (yearpublished %in% seq(2015, 2018, 1)),
bg = "#BDD7E7") %>%
bg(., i = ~ (yearpublished %in% seq(2019, 2021, 1)),
bg = "#6BAED6")
yearpublished | game_id | name | rank | bayesaverage |
2017 | 174430 | Gloomhaven | 1 | 8.50 |
2015 | 161936 | Pandemic Legacy: Season 1 | 2 | 8.44 |
2018 | 224517 | Brass: Birmingham | 3 | 8.42 |
2020 | 291457 | Gloomhaven: Jaws of the Lion | 4 | 8.27 |
2016 | 167791 | Terraforming Mars | 5 | 8.27 |
2017 | 233078 | Twilight Imperium: Fourth Edition | 6 | 8.26 |
2017 | 220308 | Gaia Project | 7 | 8.17 |
2016 | 187645 | Star Wars: Rebellion | 8 | 8.17 |
2017 | 162886 | Spirit Island | 9 | 8.14 |
2011 | 115746 | War of the Ring: Second Edition | 10 | 8.14 |
2015 | 182028 | Through the Ages: A New Story of Civilization | 11 | 8.14 |
2016 | 193738 | Great Western Trail | 12 | 8.12 |
2005 | 12333 | Twilight Struggle | 13 | 8.11 |
2016 | 169786 | Scythe | 14 | 8.06 |
2020 | 316554 | Dune: Imperium | 15 | 8.03 |
2011 | 84876 | The Castles of Burgundy | 16 | 8.01 |
2018 | 167355 | Nemesis | 17 | 7.99 |
2015 | 173346 | 7 Wonders Duel | 18 | 7.98 |
2013 | 124361 | Concordia | 19 | 7.97 |
2007 | 28720 | Brass: Lancashire | 20 | 7.97 |
2012 | 120677 | Terra Mystica | 21 | 7.96 |
2016 | 177736 | A Feast for Odin | 22 | 7.96 |
2019 | 266192 | Wingspan | 23 | 7.94 |
2016 | 205637 | Arkham Horror: The Card Game | 24 | 7.93 |
2018 | 237182 | Root | 25 | 7.89 |
2015 | 183394 | Viticulture Essential Edition | 26 | 7.89 |
2018 | 199792 | Everdell | 27 | 7.88 |
2014 | 164928 | Orléans | 28 | 7.88 |
2019 | 266507 | Clank!: Legacy – Acquisitions Incorporated | 29 | 7.88 |
2011 | 96848 | Mage Knight Board Game | 30 | 7.87 |
2020 | 246900 | Eclipse: Second Dawn for the Galaxy | 31 | 7.87 |
2020 | 312484 | Lost Ruins of Arnak | 32 | 7.87 |
2015 | 175914 | Food Chain Magnate | 33 | 7.83 |
2002 | 3076 | Puerto Rico | 34 | 7.83 |
2013 | 102794 | Caverna: The Cave Farmers | 35 | 7.82 |
2019 | 285774 | Marvel Champions: The Card Game | 36 | 7.81 |
2015 | 170216 | Blood Rage | 37 | 7.81 |
2017 | 192135 | Too Many Bones | 38 | 7.81 |
2007 | 31260 | Agricola | 39 | 7.80 |
2019 | 251247 | Barrage | 40 | 7.80 |
2018 | 248562 | Mage Knight: Ultimate Edition | 41 | 7.79 |
2021 | 342942 | Ark Nova | 42 | 7.79 |
2019 | 276025 | Maracaibo | 43 | 7.78 |
2018 | 247763 | Underwater Cities | 44 | 7.78 |
2017 | 221107 | Pandemic Legacy: Season 2 | 45 | 7.78 |
2019 | 256960 | Pax Pamir: Second Edition | 46 | 7.77 |
2016 | 205059 | Mansions of Madness: Second Edition | 47 | 7.77 |
2019 | 284083 | The Crew: The Quest for Planet Nine | 48 | 7.77 |
2017 | 185343 | Anachrony | 49 | 7.75 |
2019 | 271320 | The Castles of Burgundy | 50 | 7.75 |
Why do newer games so quickly climb the geek list? This is basically due to the fact that BGG continues to use ~ 1000 votes to start its Bayesian average, even as the size of the hobby has grown. This was probably a good prior for when board games had a much smaller audience, but as BGG and the hobby has grown, newer games rapidly attract enough user ratings that they manage to quickly overtake this prior.
If we plot the average and median user ratings for games published in each year, we can see how more recently published games draw lots of user ratings (though this does start to taper off for games in the last 1-2 years, though we would expect this to go up as these games accumulate user ratings).
active_games %>%
filter(yearpublished>=1970) %>%
filter(yearpublished< 2019) %>%
group_by(yearpublished) %>%
summarize(median_users = median(usersrated),
average_users = mean(usersrated)) %>%
mutate(date = as.Date(paste(yearpublished, "01", "01", sep="-"))) %>%
melt(id.vars=c("date", "yearpublished")) %>%
ggplot(., aes(x=date, y=value))+
geom_point()+
geom_line()+
theme_phil()+
facet_wrap(variable~.,
ncol = 1,
scales="free_y")+
xlab("yearpublished")
This isn’t a problem per se, but it does mean that two games might actually be pretty similar in quality, but the one released more recently draws lots of user ratings, and so it gets a big boost to its rating on the Geek list.
I’m not going to argue that this is a fundamental flaw in the rating that the site uses. But I do think it has changed the meaning of the rating over time. Presumably, the idea behind using the Bayesian average is to indicate games that combine both popularity and a high rating. On some level, we’d like the ratings to be that intersection of ‘these are games that have been well received and are very popular’.
If we back to that plot of game averages plotted against logged user ratings, this basically means finding games that are at the top of the ‘mountain’. But I’ve highlighted the games in the top 100 to show that this isn’t quite the case with the geek rating. Popularity ends up mattering less than we might want it to, given the relationship between the two components.
Fortunately for us, we can adjust for this in a pretty simple way by upping the number of baseline 5.5 votes for every single game. Rather than using the 1000 or so that BGG uses, we’ll toggle the number of baseline ratings at various thresholds up to 100,000 votes and see how the rankings start to change. Games that maintain a high ranking at each threshold will be games that have both a large number of user ratings and a high average. Games that are sensitive to the number of baseline user ratings will be ones that are ‘inflated’ in the current ranking system.
votes_added<-c(1000, 2000, 5000, 10000, 25000, 50000, 100000)
votes_added_df<-foreach(i = 1:length(votes_added), .combine=rbind.data.frame) %do% {
active_games %>%
arrange(desc(bayesaverage)) %>%
mutate(rank = row_number()) %>%
arrange(rank) %>%
mutate(date = as.Date(timestamp)) %>%
mutate(yearpublished = as.character(yearpublished)) %>%
mutate(tadj_bayesaverage = ((usersrated*average) + (5.5*votes_added[i])) / (usersrated + votes_added[i])) %>%
arrange(desc(tadj_bayesaverage)) %>%
select(game_id, date, usersrated, name, rank, bayesaverage, yearpublished, tadj_bayesaverage) %>%
mutate(VotesAdded = votes_added[i]) %>%
select(date, usersrated, game_id, name, tadj_bayesaverage, VotesAdded, yearpublished)
}
# get results
votes_added_games<-votes_added_df %>%
group_by(VotesAdded) %>%
arrange(desc(tadj_bayesaverage)) %>%
mutate(rank = row_number()) %>%
group_by(game_id) %>%
select(-tadj_bayesaverage) %>%
mutate(avg_rank = mean(rank),
sd_rank = sd(rank),
VotesAdded = paste("votes", VotesAdded, sep="_")) %>%
ungroup() %>%
pivot_wider(names_from = c("VotesAdded"),
values_from = c("rank"),
id_cols = c("date", "game_id", "name", "usersrated", "yearpublished", "avg_rank", "sd_rank")) %>%
unnest() %>%
mutate_if(is.numeric, round, 1) %>%
arrange(avg_rank) %>%
mutate(rank = row_number())
What do we find? We can make a table of games with their rankings at different thresholds. There’s no getting around the fact that Gloomhaven is going to be a top game, it has an extremely high average with a lot of votes. The same goes for Terraforming Mars, which has an extremely high number of user ratings with a high average - if we set the number of baseline votes over 25k Terraforming Mars becomes the top game of all time.
Game Ranking | ||||||||||
# User Votes Added | ||||||||||
name | yearpublished | rank | avg_rank | 1k | 2k | 5k | 10k | 25k | 50k | 100k |
Gloomhaven | 2017 | 1 | 1.9 | 1 | 1 | 1 | 1 | 2 | 2 | 5 |
Terraforming Mars | 2016 | 2 | 2.7 | 6 | 5 | 3 | 2 | 1 | 1 | 1 |
Pandemic Legacy: Season 1 | 2015 | 3 | 4.0 | 3 | 2 | 2 | 3 | 3 | 5 | 10 |
Scythe | 2016 | 4 | 7.6 | 20 | 13 | 5 | 4 | 4 | 3 | 4 |
7 Wonders Duel | 2015 | 5 | 10.1 | 26 | 17 | 11 | 6 | 5 | 4 | 2 |
Twilight Struggle | 2005 | 6 | 12.0 | 16 | 12 | 7 | 7 | 9 | 15 | 18 |
Brass: Birmingham | 2018 | 7 | 12.1 | 2 | 3 | 4 | 5 | 15 | 24 | 32 |
Wingspan | 2019 | 8 | 13.0 | 28 | 19 | 14 | 8 | 6 | 8 | 8 |
Spirit Island | 2017 | 9 | 13.1 | 10 | 8 | 6 | 9 | 14 | 19 | 26 |
The Castles of Burgundy | 2011 | 10 | 14.6 | 25 | 18 | 15 | 10 | 8 | 11 | 15 |
Great Western Trail | 2016 | 11 | 17.4 | 17 | 14 | 12 | 11 | 19 | 22 | 27 |
Terra Mystica | 2012 | 12 | 19.4 | 29 | 21 | 17 | 14 | 16 | 18 | 21 |
Star Wars: Rebellion | 2016 | 13 | 20.0 | 9 | 7 | 9 | 13 | 26 | 35 | 41 |
Puerto Rico | 2002 | 14 | 20.0 | 50 | 33 | 20 | 12 | 7 | 9 | 9 |
Arkham Horror: The Card Game | 2016 | 15 | 22.9 | 23 | 20 | 18 | 17 | 22 | 29 | 31 |
Through the Ages: A New Story of Civilization | 2015 | 16 | 23.7 | 12 | 11 | 13 | 16 | 31 | 38 | 45 |
Agricola | 2007 | 17 | 23.9 | 59 | 38 | 24 | 15 | 10 | 10 | 11 |
Concordia | 2013 | 18 | 27.6 | 30 | 24 | 22 | 19 | 29 | 33 | 36 |
Root | 2018 | 19 | 28.1 | 34 | 26 | 23 | 21 | 27 | 32 | 34 |
Gloomhaven: Jaws of the Lion | 2020 | 20 | 28.6 | 4 | 4 | 8 | 18 | 42 | 59 | 65 |
Viticulture Essential Edition | 2015 | 21 | 28.7 | 40 | 29 | 26 | 22 | 23 | 31 | 30 |
Everdell | 2018 | 22 | 31.3 | 35 | 27 | 25 | 27 | 32 | 34 | 39 |
Gaia Project | 2017 | 23 | 32.0 | 8 | 9 | 16 | 25 | 44 | 58 | 64 |
Blood Rage | 2015 | 24 | 32.1 | 51 | 35 | 29 | 28 | 24 | 30 | 28 |
Power Grid | 2004 | 25 | 32.9 | 73 | 53 | 32 | 23 | 17 | 16 | 16 |
Azul | 2017 | 26 | 34.3 | 84 | 56 | 36 | 24 | 13 | 14 | 13 |
Mage Knight Board Game | 2011 | 27 | 34.6 | 36 | 28 | 28 | 29 | 35 | 40 | 46 |
7 Wonders | 2010 | 28 | 35.4 | 99 | 68 | 38 | 20 | 11 | 6 | 6 |
Twilight Imperium: Fourth Edition | 2017 | 29 | 36.0 | 5 | 6 | 10 | 26 | 52 | 69 | 84 |
Nemesis | 2018 | 30 | 41.1 | 14 | 15 | 21 | 31 | 59 | 68 | 80 |
Mansions of Madness: Second Edition | 2016 | 31 | 41.3 | 47 | 37 | 34 | 34 | 40 | 45 | 52 |
Caverna: The Cave Farmers | 2013 | 32 | 42.0 | 53 | 39 | 35 | 35 | 39 | 44 | 49 |
Race for the Galaxy | 2007 | 33 | 44.3 | 94 | 71 | 41 | 33 | 25 | 23 | 23 |
Orléans | 2014 | 34 | 44.6 | 41 | 34 | 33 | 40 | 48 | 56 | 60 |
A Feast for Odin | 2016 | 35 | 45.1 | 24 | 23 | 30 | 42 | 60 | 64 | 73 |
Tzolk'in: The Mayan Calendar | 2012 | 36 | 46.4 | 70 | 54 | 39 | 41 | 38 | 41 | 42 |
Dune: Imperium | 2020 | 37 | 46.6 | 18 | 16 | 27 | 38 | 65 | 75 | 87 |
War of the Ring: Second Edition | 2011 | 38 | 46.9 | 7 | 10 | 19 | 37 | 70 | 88 | 97 |
Brass: Lancashire | 2007 | 39 | 47.1 | 27 | 25 | 31 | 44 | 61 | 65 | 77 |
Lords of Waterdeep | 2012 | 40 | 47.1 | 98 | 75 | 42 | 36 | 28 | 26 | 25 |
Robinson Crusoe: Adventures on the Cursed Island | 2012 | 41 | 49.9 | 85 | 66 | 43 | 43 | 37 | 37 | 38 |
The Crew: The Quest for Planet Nine | 2019 | 42 | 51.0 | 62 | 46 | 40 | 47 | 50 | 55 | 57 |
Pandemic | 2008 | 43 | 53.0 | 163 | 102 | 54 | 30 | 12 | 7 | 3 |
Dominion | 2008 | 44 | 53.6 | 149 | 96 | 55 | 32 | 18 | 13 | 12 |
Lost Ruins of Arnak | 2020 | 45 | 53.7 | 38 | 31 | 37 | 49 | 66 | 72 | 83 |
The Quacks of Quedlinburg | 2018 | 46 | 53.7 | 80 | 60 | 45 | 46 | 46 | 48 | 51 |
Five Tribes | 2014 | 47 | 56.0 | 91 | 74 | 50 | 48 | 43 | 42 | 44 |
Clank!: A Deck-Building Adventure | 2016 | 48 | 56.6 | 86 | 67 | 49 | 50 | 47 | 47 | 50 |
Le Havre | 2008 | 49 | 58.6 | 76 | 62 | 48 | 53 | 55 | 57 | 59 |
Codenames | 2015 | 50 | 59.0 | 162 | 104 | 57 | 39 | 20 | 17 | 14 |
Android: Netrunner | 2012 | 51 | 59.3 | 75 | 59 | 47 | 54 | 58 | 61 | 61 |
Patchwork | 2014 | 52 | 61.4 | 144 | 98 | 59 | 45 | 33 | 27 | 24 |
Eclipse | 2011 | 53 | 62.6 | 78 | 64 | 51 | 57 | 62 | 63 | 63 |
Star Wars: Imperial Assault | 2014 | 54 | 62.7 | 58 | 43 | 46 | 58 | 72 | 77 | 85 |
Eldritch Horror | 2013 | 55 | 63.4 | 95 | 79 | 56 | 55 | 51 | 54 | 54 |
Battlestar Galactica: The Board Game | 2008 | 56 | 65.6 | 107 | 83 | 58 | 56 | 49 | 53 | 53 |
Ticket to Ride: Europe | 2005 | 57 | 71.0 | 182 | 124 | 69 | 51 | 30 | 21 | 20 |
The 7th Continent | 2017 | 58 | 71.1 | 57 | 48 | 52 | 63 | 82 | 94 | 102 |
Marvel Champions: The Card Game | 2019 | 59 | 71.6 | 31 | 32 | 44 | 67 | 96 | 112 | 119 |
Dominion: Intrigue | 2009 | 60 | 74.9 | 124 | 92 | 65 | 62 | 63 | 60 | 58 |
Caylus | 2005 | 61 | 76.9 | 111 | 89 | 66 | 65 | 71 | 67 | 69 |
Food Chain Magnate | 2015 | 62 | 77.1 | 43 | 42 | 53 | 69 | 99 | 114 | 120 |
Stone Age | 2008 | 63 | 80.0 | 185 | 131 | 75 | 59 | 41 | 36 | 33 |
The Voyages of Marco Polo | 2015 | 64 | 81.6 | 88 | 80 | 64 | 70 | 81 | 92 | 96 |
Clans of Caledonia | 2017 | 65 | 84.1 | 64 | 57 | 60 | 76 | 103 | 113 | 116 |
El Grande | 1995 | 66 | 85.1 | 113 | 91 | 71 | 71 | 77 | 85 | 88 |
Star Realms | 2014 | 67 | 85.4 | 176 | 126 | 78 | 64 | 54 | 52 | 48 |
Carcassonne | 2000 | 68 | 86.1 | 263 | 167 | 81 | 52 | 21 | 12 | 7 |
Tigris & Euphrates | 1997 | 69 | 87.7 | 131 | 100 | 76 | 72 | 75 | 78 | 82 |
Architects of the West Kingdom | 2018 | 70 | 88.6 | 102 | 87 | 72 | 75 | 86 | 97 | 101 |
Through the Ages: A Story of Civilization | 2006 | 71 | 89.0 | 81 | 73 | 70 | 78 | 100 | 109 | 112 |
Dead of Winter: A Crossroads Game | 2014 | 72 | 91.3 | 204 | 140 | 87 | 66 | 53 | 46 | 43 |
Mechs vs. Minions | 2016 | 73 | 92.1 | 61 | 55 | 68 | 82 | 115 | 129 | 135 |
Pandemic Legacy: Season 2 | 2017 | 74 | 92.6 | 48 | 49 | 62 | 85 | 122 | 136 | 146 |
Roll for the Galaxy | 2014 | 75 | 92.9 | 158 | 113 | 85 | 74 | 73 | 73 | 74 |
Anachrony | 2017 | 76 | 94.3 | 46 | 47 | 63 | 89 | 125 | 142 | 148 |
Dominant Species | 2010 | 77 | 94.3 | 92 | 84 | 77 | 80 | 104 | 110 | 113 |
Splendor | 2014 | 78 | 94.6 | 256 | 169 | 90 | 61 | 36 | 28 | 22 |
Ticket to Ride | 2004 | 79 | 96.6 | 275 | 175 | 93 | 60 | 34 | 20 | 19 |
Keyflower | 2012 | 80 | 98.0 | 112 | 94 | 83 | 84 | 98 | 105 | 110 |
Underwater Cities | 2018 | 81 | 98.4 | 49 | 50 | 67 | 94 | 131 | 147 | 151 |
Twilight Imperium: Third Edition | 2005 | 82 | 99.3 | 97 | 88 | 82 | 90 | 108 | 115 | 115 |
Jaipur | 2009 | 83 | 99.4 | 228 | 152 | 95 | 68 | 56 | 50 | 47 |
Magic: The Gathering | 1993 | 84 | 100.0 | 203 | 141 | 97 | 73 | 68 | 62 | 56 |
Aeon's End | 2016 | 85 | 102.1 | 65 | 65 | 73 | 99 | 127 | 139 | 147 |
A Game of Thrones: The Board Game (Second Edition) | 2011 | 86 | 102.1 | 187 | 139 | 99 | 77 | 74 | 71 | 68 |
Star Wars: X-Wing Miniatures Game | 2012 | 87 | 103.0 | 150 | 115 | 94 | 81 | 88 | 95 | 98 |
Troyes | 2010 | 88 | 103.4 | 123 | 101 | 89 | 91 | 102 | 107 | 111 |
Rising Sun | 2018 | 89 | 104.3 | 100 | 90 | 86 | 95 | 112 | 121 | 126 |
Teotihuacan: City of Gods | 2018 | 90 | 104.7 | 82 | 77 | 80 | 101 | 123 | 132 | 138 |
Descent: Journeys in the Dark (Second Edition) | 2012 | 91 | 106.4 | 157 | 118 | 98 | 86 | 91 | 96 | 99 |
Raiders of the North Sea | 2015 | 92 | 106.6 | 114 | 97 | 91 | 98 | 111 | 117 | 118 |
The Resistance: Avalon | 2012 | 93 | 109.4 | 202 | 144 | 105 | 79 | 79 | 79 | 78 |
Maracaibo | 2019 | 94 | 111.9 | 42 | 45 | 74 | 112 | 157 | 172 | 181 |
The Lord of the Rings: The Card Game | 2011 | 95 | 113.1 | 159 | 123 | 103 | 97 | 101 | 103 | 106 |
Istanbul | 2014 | 96 | 114.0 | 198 | 145 | 106 | 88 | 84 | 87 | 90 |
Grand Austria Hotel | 2015 | 97 | 114.4 | 87 | 85 | 92 | 107 | 135 | 146 | 149 |
Cosmic Encounter | 2008 | 98 | 115.1 | 213 | 154 | 108 | 87 | 80 | 83 | 81 |
Sagrada | 2017 | 99 | 115.9 | 232 | 165 | 111 | 83 | 76 | 74 | 70 |
Crokinole | 1876 | 100 | 116.6 | 74 | 76 | 88 | 111 | 143 | 158 | 166 |
There’s no correct number of votes to add, but it is interesting to see how games are affected by having more votes. If we add 100k votes we basically end up with a list that penalizes recent games to enter the top 100 (Gloomhaven Jaws of the Lion, Marvel Champions, Rising Sun, Underwater Cities, Dune Imperium) and provides a boost to some of the pillars of the board game renaissance Pandemic, Ticket to Ride, Pandemic, 7 Wonders, Puerto Rico, Agricola. Man, evidently Terraforming Mars is really good?
What are the top games if use a prior with 100k votes rater than 1k?
Game Ranking | ||||||||||
# User Votes Added | ||||||||||
name | yearpublished | rank | avg_rank | 1k | 2k | 5k | 10k | 25k | 50k | 100k |
Terraforming Mars | 2016 | 2 | 2.7 | 6 | 5 | 3 | 2 | 1 | 1 | 1 |
7 Wonders Duel | 2015 | 5 | 10.1 | 26 | 17 | 11 | 6 | 5 | 4 | 2 |
Pandemic | 2008 | 43 | 53.0 | 163 | 102 | 54 | 30 | 12 | 7 | 3 |
Scythe | 2016 | 4 | 7.6 | 20 | 13 | 5 | 4 | 4 | 3 | 4 |
Gloomhaven | 2017 | 1 | 1.9 | 1 | 1 | 1 | 1 | 2 | 2 | 5 |
7 Wonders | 2010 | 28 | 35.4 | 99 | 68 | 38 | 20 | 11 | 6 | 6 |
Carcassonne | 2000 | 68 | 86.1 | 263 | 167 | 81 | 52 | 21 | 12 | 7 |
Wingspan | 2019 | 8 | 13.0 | 28 | 19 | 14 | 8 | 6 | 8 | 8 |
Puerto Rico | 2002 | 14 | 20.0 | 50 | 33 | 20 | 12 | 7 | 9 | 9 |
Pandemic Legacy: Season 1 | 2015 | 3 | 4.0 | 3 | 2 | 2 | 3 | 3 | 5 | 10 |
Agricola | 2007 | 17 | 23.9 | 59 | 38 | 24 | 15 | 10 | 10 | 11 |
Dominion | 2008 | 44 | 53.6 | 149 | 96 | 55 | 32 | 18 | 13 | 12 |
Azul | 2017 | 26 | 34.3 | 84 | 56 | 36 | 24 | 13 | 14 | 13 |
Codenames | 2015 | 50 | 59.0 | 162 | 104 | 57 | 39 | 20 | 17 | 14 |
The Castles of Burgundy | 2011 | 10 | 14.6 | 25 | 18 | 15 | 10 | 8 | 11 | 15 |
Power Grid | 2004 | 25 | 32.9 | 73 | 53 | 32 | 23 | 17 | 16 | 16 |
Catan | 1995 | 154 | 174.0 | 532 | 333 | 170 | 96 | 45 | 25 | 17 |
Twilight Struggle | 2005 | 6 | 12.0 | 16 | 12 | 7 | 7 | 9 | 15 | 18 |
Ticket to Ride | 2004 | 79 | 96.6 | 275 | 175 | 93 | 60 | 34 | 20 | 19 |
Ticket to Ride: Europe | 2005 | 57 | 71.0 | 182 | 124 | 69 | 51 | 30 | 21 | 20 |
Terra Mystica | 2012 | 12 | 19.4 | 29 | 21 | 17 | 14 | 16 | 18 | 21 |
Splendor | 2014 | 78 | 94.6 | 256 | 169 | 90 | 61 | 36 | 28 | 22 |
Race for the Galaxy | 2007 | 33 | 44.3 | 94 | 71 | 41 | 33 | 25 | 23 | 23 |
Patchwork | 2014 | 52 | 61.4 | 144 | 98 | 59 | 45 | 33 | 27 | 24 |
Lords of Waterdeep | 2012 | 40 | 47.1 | 98 | 75 | 42 | 36 | 28 | 26 | 25 |
Spirit Island | 2017 | 9 | 13.1 | 10 | 8 | 6 | 9 | 14 | 19 | 26 |
Great Western Trail | 2016 | 11 | 17.4 | 17 | 14 | 12 | 11 | 19 | 22 | 27 |
Blood Rage | 2015 | 24 | 32.1 | 51 | 35 | 29 | 28 | 24 | 30 | 28 |
Small World | 2009 | 133 | 151.1 | 422 | 270 | 149 | 92 | 57 | 39 | 29 |
Viticulture Essential Edition | 2015 | 21 | 28.7 | 40 | 29 | 26 | 22 | 23 | 31 | 30 |
Arkham Horror: The Card Game | 2016 | 15 | 22.9 | 23 | 20 | 18 | 17 | 22 | 29 | 31 |
Brass: Birmingham | 2018 | 7 | 12.1 | 2 | 3 | 4 | 5 | 15 | 24 | 32 |
Stone Age | 2008 | 63 | 80.0 | 185 | 131 | 75 | 59 | 41 | 36 | 33 |
Root | 2018 | 19 | 28.1 | 34 | 26 | 23 | 21 | 27 | 32 | 34 |
Love Letter | 2012 | 138 | 157.7 | 432 | 278 | 152 | 100 | 64 | 43 | 35 |
Concordia | 2013 | 18 | 27.6 | 30 | 24 | 22 | 19 | 29 | 33 | 36 |
King of Tokyo | 2011 | 164 | 180.9 | 502 | 322 | 178 | 109 | 69 | 49 | 37 |
Robinson Crusoe: Adventures on the Cursed Island | 2012 | 41 | 49.9 | 85 | 66 | 43 | 43 | 37 | 37 | 38 |
Everdell | 2018 | 22 | 31.3 | 35 | 27 | 25 | 27 | 32 | 34 | 39 |
Dixit | 2008 | 141 | 160.6 | 430 | 279 | 154 | 103 | 67 | 51 | 40 |
Star Wars: Rebellion | 2016 | 13 | 20.0 | 9 | 7 | 9 | 13 | 26 | 35 | 41 |
Tzolk'in: The Mayan Calendar | 2012 | 36 | 46.4 | 70 | 54 | 39 | 41 | 38 | 41 | 42 |
Dead of Winter: A Crossroads Game | 2014 | 72 | 91.3 | 204 | 140 | 87 | 66 | 53 | 46 | 43 |
Five Tribes | 2014 | 47 | 56.0 | 91 | 74 | 50 | 48 | 43 | 42 | 44 |
Through the Ages: A New Story of Civilization | 2015 | 16 | 23.7 | 12 | 11 | 13 | 16 | 31 | 38 | 45 |
Mage Knight Board Game | 2011 | 27 | 34.6 | 36 | 28 | 28 | 29 | 35 | 40 | 46 |
Jaipur | 2009 | 83 | 99.4 | 228 | 152 | 95 | 68 | 56 | 50 | 47 |
Star Realms | 2014 | 67 | 85.4 | 176 | 126 | 78 | 64 | 54 | 52 | 48 |
Caverna: The Cave Farmers | 2013 | 32 | 42.0 | 53 | 39 | 35 | 35 | 39 | 44 | 49 |
Clank!: A Deck-Building Adventure | 2016 | 48 | 56.6 | 86 | 67 | 49 | 50 | 47 | 47 | 50 |
The Quacks of Quedlinburg | 2018 | 46 | 53.7 | 80 | 60 | 45 | 46 | 46 | 48 | 51 |
Mansions of Madness: Second Edition | 2016 | 31 | 41.3 | 47 | 37 | 34 | 34 | 40 | 45 | 52 |
Battlestar Galactica: The Board Game | 2008 | 56 | 65.6 | 107 | 83 | 58 | 56 | 49 | 53 | 53 |
Eldritch Horror | 2013 | 55 | 63.4 | 95 | 79 | 56 | 55 | 51 | 54 | 54 |
Citadels | 2000 | 207 | 229.6 | 611 | 405 | 225 | 151 | 90 | 70 | 55 |
Magic: The Gathering | 1993 | 84 | 100.0 | 203 | 141 | 97 | 73 | 68 | 62 | 56 |
The Crew: The Quest for Planet Nine | 2019 | 42 | 51.0 | 62 | 46 | 40 | 47 | 50 | 55 | 57 |
Dominion: Intrigue | 2009 | 60 | 74.9 | 124 | 92 | 65 | 62 | 63 | 60 | 58 |
Le Havre | 2008 | 49 | 58.6 | 76 | 62 | 48 | 53 | 55 | 57 | 59 |
Orléans | 2014 | 34 | 44.6 | 41 | 34 | 33 | 40 | 48 | 56 | 60 |
Android: Netrunner | 2012 | 51 | 59.3 | 75 | 59 | 47 | 54 | 58 | 61 | 61 |
Kingdomino | 2016 | 129 | 145.9 | 338 | 230 | 143 | 104 | 78 | 66 | 62 |
Eclipse | 2011 | 53 | 62.6 | 78 | 64 | 51 | 57 | 62 | 63 | 63 |
Gaia Project | 2017 | 23 | 32.0 | 8 | 9 | 16 | 25 | 44 | 58 | 64 |
Gloomhaven: Jaws of the Lion | 2020 | 20 | 28.6 | 4 | 4 | 8 | 18 | 42 | 59 | 65 |
Takenoko | 2011 | 158 | 176.6 | 427 | 287 | 171 | 122 | 87 | 76 | 66 |
Lost Cities | 1999 | 174 | 197.3 | 486 | 320 | 194 | 139 | 94 | 81 | 67 |
A Game of Thrones: The Board Game (Second Edition) | 2011 | 86 | 102.1 | 187 | 139 | 99 | 77 | 74 | 71 | 68 |
Caylus | 2005 | 61 | 76.9 | 111 | 89 | 66 | 65 | 71 | 67 | 69 |
Sagrada | 2017 | 99 | 115.9 | 232 | 165 | 111 | 83 | 76 | 74 | 70 |
The Resistance | 2009 | 161 | 178.3 | 421 | 285 | 172 | 128 | 89 | 82 | 71 |
Arkham Horror | 2005 | 167 | 184.1 | 435 | 296 | 177 | 133 | 92 | 84 | 72 |
A Feast for Odin | 2016 | 35 | 45.1 | 24 | 23 | 30 | 42 | 60 | 64 | 73 |
Roll for the Galaxy | 2014 | 75 | 92.9 | 158 | 113 | 85 | 74 | 73 | 73 | 74 |
Santorini | 2016 | 118 | 137.0 | 287 | 200 | 132 | 102 | 83 | 80 | 75 |
Mysterium | 2015 | 157 | 175.7 | 405 | 274 | 169 | 127 | 93 | 86 | 76 |
Brass: Lancashire | 2007 | 39 | 47.1 | 27 | 25 | 31 | 44 | 61 | 65 | 77 |
The Resistance: Avalon | 2012 | 93 | 109.4 | 202 | 144 | 105 | 79 | 79 | 79 | 78 |
Hanabi | 2010 | 226 | 248.4 | 632 | 423 | 244 | 160 | 110 | 91 | 79 |
Nemesis | 2018 | 30 | 41.1 | 14 | 15 | 21 | 31 | 59 | 68 | 80 |
Cosmic Encounter | 2008 | 98 | 115.1 | 213 | 154 | 108 | 87 | 80 | 83 | 81 |
Tigris & Euphrates | 1997 | 69 | 87.7 | 131 | 100 | 76 | 72 | 75 | 78 | 82 |
Lost Ruins of Arnak | 2020 | 45 | 53.7 | 38 | 31 | 37 | 49 | 66 | 72 | 83 |
Twilight Imperium: Fourth Edition | 2017 | 29 | 36.0 | 5 | 6 | 10 | 26 | 52 | 69 | 84 |
Star Wars: Imperial Assault | 2014 | 54 | 62.7 | 58 | 43 | 46 | 58 | 72 | 77 | 85 |
Galaxy Trucker | 2007 | 134 | 152.0 | 314 | 220 | 146 | 114 | 95 | 89 | 86 |
Dune: Imperium | 2020 | 37 | 46.6 | 18 | 16 | 27 | 38 | 65 | 75 | 87 |
El Grande | 1995 | 66 | 85.1 | 113 | 91 | 71 | 71 | 77 | 85 | 88 |
Betrayal at House on the Hill | 2004 | 239 | 258.7 | 646 | 440 | 251 | 173 | 114 | 98 | 89 |
Istanbul | 2014 | 96 | 114.0 | 198 | 145 | 106 | 88 | 84 | 87 | 90 |
Bohnanza | 1997 | 245 | 264.9 | 662 | 450 | 258 | 178 | 116 | 99 | 91 |
Hive | 2000 | 151 | 169.4 | 367 | 251 | 161 | 125 | 97 | 93 | 92 |
Memoir '44 | 2004 | 101 | 118.0 | 205 | 150 | 110 | 93 | 85 | 90 | 93 |
Sushi Go! | 2013 | 251 | 271.3 | 677 | 454 | 267 | 182 | 124 | 101 | 94 |
Coup | 2012 | 268 | 292.4 | 744 | 493 | 288 | 193 | 130 | 104 | 95 |
The Voyages of Marco Polo | 2015 | 64 | 81.6 | 88 | 80 | 64 | 70 | 81 | 92 | 96 |
War of the Ring: Second Edition | 2011 | 38 | 46.9 | 7 | 10 | 19 | 37 | 70 | 88 | 97 |
Star Wars: X-Wing Miniatures Game | 2012 | 87 | 103.0 | 150 | 115 | 94 | 81 | 88 | 95 | 98 |
Descent: Journeys in the Dark (Second Edition) | 2012 | 91 | 106.4 | 157 | 118 | 98 | 86 | 91 | 96 | 99 |
Sushi Go Party! | 2016 | 132 | 150.3 | 284 | 205 | 141 | 117 | 105 | 100 | 100 |
Adding 100k votes gives us the list of games that more or less maps to the evergreen games of the last two decades, and actually shows a decent balance of complex and simple games. I would argue that is is a stronger list to look at for people who are interested in the hobby but aren’t necessarily going to be interested in chasing the hotness.
Going back to ‘the mountain’ visual, what games does this set of rankings end up prioritizing?
Hooray! That’s about what I was hoping to see.
I’ll now put this same information into a datatable to make it a bit more interactive, you can sort and search for any game and see how it compares across the different thresholds.